lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
52 lines
1.5 KiB
#ifndef LI_MD5_H |
|
#define LI_MD5_H |
|
#include "first.h" |
|
|
|
/* MD5.H - header file for MD5C.C |
|
*/ |
|
|
|
/* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All |
|
rights reserved. |
|
|
|
License to copy and use this software is granted provided that it |
|
is identified as the "RSA Data Security, Inc. MD5 Message-Digest |
|
Algorithm" in all material mentioning or referencing this software |
|
or this function. |
|
|
|
License is also granted to make and use derivative works provided |
|
that such works are identified as "derived from the RSA Data |
|
Security, Inc. MD5 Message-Digest Algorithm" in all material |
|
mentioning or referencing the derived work. |
|
|
|
RSA Data Security, Inc. makes no representations concerning either |
|
the merchantability of this software or the suitability of this |
|
software for any particular purpose. It is provided "as is" |
|
without express or implied warranty of any kind. |
|
|
|
These notices must be retained in any copies of any part of this |
|
documentation and/or software. |
|
*/ |
|
|
|
#ifdef HAVE_STDINT_H |
|
# include <stdint.h> |
|
#endif |
|
#ifdef HAVE_INTTYPES_H |
|
# include <inttypes.h> |
|
#endif |
|
|
|
#define UINT4 uint32_t |
|
#define UINT2 uint16_t |
|
#define POINTER unsigned char * |
|
|
|
/* MD5 context. */ |
|
typedef struct { |
|
UINT4 state[4]; /* state (ABCD) */ |
|
UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ |
|
unsigned char buffer[64]; /* input buffer */ |
|
} li_MD5_CTX; |
|
|
|
void li_MD5_Init (li_MD5_CTX *); |
|
void li_MD5_Update (li_MD5_CTX *, const void *, unsigned int); |
|
void li_MD5_Final (unsigned char [16], li_MD5_CTX *); |
|
|
|
#endif
|
|
|