1 /* md5.h - MD5 Message-Digest Algorithm
2 * Copyright (C) 1995, 1996, 1998, 1999 Free Software Foundation, Inc.
4 * according to the definition of MD5 in RFC 1321 from April 1992.
5 * NOTE: This is *not* the same file as the one from glibc
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 3, or (at your option) any
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
26 void md5_hex_digest(char *hexdigest
, const unsigned char *s
);
27 int md5_hex_digest_file(char *hexdigest
, const unsigned char *file
);
28 void md5_hex_hmac(char *hexdigest
,
29 const unsigned char* text
, int text_len
,
30 const unsigned char* key
, int key_len
);
32 #endif /* _MD5_HDR_ */