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