1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
/* CRYPTO.H (c) Copyright Jan Jaeger, 2000-2009 */
/* Cryptographic instructions */
// $Id: crypto.h 5572 2009-12-29 13:13:15Z bernard $
//
// $Log$
// Revision 1.11 2007/06/23 00:04:05 ivan
// Update copyright notices to include current year (2007)
//
// Revision 1.10 2006/12/08 09:43:19 jj
// Add CVS message log
//
#if defined(_FEATURE_MESSAGE_SECURITY_ASSIST)
#ifndef _CRYPTO_C_
#ifndef _HENGINE_DLL_
#define CRY_DLL_IMPORT DLL_IMPORT
#else /* _HDASD_DLL_ */
#define CRY_DLL_IMPORT extern
#endif /* _HDASD_DLL_ */
#else
#define CRY_DLL_IMPORT DLL_EXPORT
#endif
CRY_DLL_IMPORT void ( ATTR_REGPARM(2) *ARCH_DEP( cipher_message ) ) ( BYTE*, REGS* );
CRY_DLL_IMPORT void ( ATTR_REGPARM(2) *ARCH_DEP( cipher_message_with_chaining ) ) ( BYTE*, REGS* );
CRY_DLL_IMPORT void ( ATTR_REGPARM(2) *ARCH_DEP( compute_message_digest ) ) ( BYTE*, REGS* );
CRY_DLL_IMPORT void ( ATTR_REGPARM(2) *ARCH_DEP( compute_message_authentication_code ) ) ( BYTE*, REGS* );
#endif /*defined(_FEATURE_MESSAGE_SECURITY_ASSIST)*/
|