xref: /titanic_52/usr/src/lib/libldap5/include/ldap/sec.h (revision 7a4f122cf63a91c2888629e433b5f5ee7536a802)
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