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