home *** CD-ROM | disk | FTP | other *** search
- #ifndef __RSAVERIFY_H__
- #define __RSAVERIFY_H__
-
- /* Xceed Encryption Library - RSAVerify Sample Application
- * Copyright (c) 2001 Xceed Software Inc.
- *
- * [RSAVerify.h]
- *
- * This console application shows how to verify a file or a message.
- * It specifically demonstrates:
- * - The ReadFile and Verify methods.
- * - The Signature, PublicKey and SigningMethod properties.
- *
- * This file is part of the Xceed Encryption Library sample
- * applications. The source code in this file is only intended as
- * a supplement to Xceed Encryption Library's documentation,
- * and is provided "as is", without warranty of any kind, either
- * expressed or implied.
- */
-
- //
- // The Visual C++ compiler will automatically generate wrapper classes
- // around available interfaces found in this type library.
- //
-
- #import "XceedCRY.dll" no_namespace named_guids
-
- //
- // Constants
- //
-
- //Size of the buffer used to read characters from the console.
- #define BUFFER_SIZE 0x4000
-
- //
- // Prototypes
- //
-
- void ShowHelp();
-
- bool ExtractParameters( int argc, char* argv[],
- IXceedSigningPtr piVerify,
- _bstr_t& bstrInputFileName );
-
- #endif // __RSAVERIFY_H__
-