version 1.1.1.1, 2013/10/14 10:32:48
|
version 1.1.1.2, 2016/11/02 10:35:00
|
Line 1
|
Line 1
|
|
#ifndef LI_MD5_H |
|
#define LI_MD5_H |
|
#include "first.h" |
|
|
/* MD5.H - header file for MD5C.C |
/* MD5.H - header file for MD5C.C |
*/ |
*/ |
|
|
Line 22 without express or implied warranty of any kind.
|
Line 26 without express or implied warranty of any kind.
|
These notices must be retained in any copies of any part of this |
These notices must be retained in any copies of any part of this |
documentation and/or software. |
documentation and/or software. |
*/ |
*/ |
|
|
#include <limits.h> |
#include <limits.h> |
#ifdef HAVE_STDINT_H |
#ifdef HAVE_STDINT_H |
# include <stdint.h> |
# include <stdint.h> |
Line 44 typedef struct {
|
Line 49 typedef struct {
|
void li_MD5_Init (li_MD5_CTX *); |
void li_MD5_Init (li_MD5_CTX *); |
void li_MD5_Update (li_MD5_CTX *, const void *, unsigned int); |
void li_MD5_Update (li_MD5_CTX *, const void *, unsigned int); |
void li_MD5_Final (unsigned char [16], li_MD5_CTX *); |
void li_MD5_Final (unsigned char [16], li_MD5_CTX *); |
|
|
|
#endif |