sec.h revision 1
1N/A/*
1N/A *
1N/A * Copyright 1999 Sun Microsystems, Inc. All rights reserved.
1N/A * Use is subject to license terms.
1N/A *
1N/A *
1N/A * Comments:
1N/A *
1N/A */
1N/A
1N/A#pragma ident "%Z%%M% %I% %E% SMI"
1N/A
1N/A#ifndef _SEC_H_
1N/A#define _SEC_H_
1N/A
1N/A#include <sys/types.h>
1N/A#include <md5.h>
1N/A
1N/Avoid hmac_md5(unsigned char *text, int text_len, unsigned char *key,
1N/A int key_len, unsigned char *digest);
1N/A
1N/Achar *hexa_print(unsigned char *aString, int aLen);
1N/Achar *hexa2str(char *anHexaStr, int *aResLen);
1N/A
1N/A#endif /* _SEC_H_ */