Files
org-hyperion-cules/crypto.h
Jan Jaeger 96910f9b50 Support to load crypto dynamically
git-svn-id: file:///home/jj/hercules.svn/trunk@1531 956126f8-22a0-4046-8f4a-272fa8102e63
2003-06-28 16:51:18 +00:00

15 lines
687 B
C

/* CRYPTO.H (c) Copyright Jan Jaeger, 2000-2003 */
/* Cryptographic instructions */
#if defined(_FEATURE_MESSAGE_SECURITY_ASSIST)
void (ATTR_REGPARM(3) (*ARCH_DEP(cipher_message))) (BYTE *, int, REGS *);
void (ATTR_REGPARM(3) (*ARCH_DEP(cipher_message_with_chaining))) (BYTE *, int, REGS *);
void (ATTR_REGPARM(3) (*ARCH_DEP(compute_intermediate_message_digest))) (BYTE *, int, REGS *);
void (ATTR_REGPARM(3) (*ARCH_DEP(compute_last_message_digest))) (BYTE *, int, REGS *);
void (ATTR_REGPARM(3) (*ARCH_DEP(compute_message_authentication_code))) (BYTE *, int, REGS *);
#endif /*defined(_FEATURE_MESSAGE_SECURITY_ASSIST)*/