1*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 2*7c478bd9Sstevel@tonic-gate 3*7c478bd9Sstevel@tonic-gate #ifndef _SEC_H_ 4*7c478bd9Sstevel@tonic-gate #define _SEC_H_ 5*7c478bd9Sstevel@tonic-gate 6*7c478bd9Sstevel@tonic-gate #include <sys/types.h> 7*7c478bd9Sstevel@tonic-gate #include <md5.h> 8*7c478bd9Sstevel@tonic-gate 9*7c478bd9Sstevel@tonic-gate void hmac_md5(unsigned char *text, int text_len, unsigned char *key, 10*7c478bd9Sstevel@tonic-gate int key_len, unsigned char *digest); 11*7c478bd9Sstevel@tonic-gate 12*7c478bd9Sstevel@tonic-gate char *hexa_print(unsigned char *aString, int aLen); 13*7c478bd9Sstevel@tonic-gate 14*7c478bd9Sstevel@tonic-gate #endif /* _SEC_H_ */ 15