summaryrefslogtreecommitdiff
path: root/src/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/md5.h')
-rw-r--r--src/md5.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/md5.h b/src/md5.h
deleted file mode 100644
index fbcada0f..00000000
--- a/src/md5.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/* 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.
- */
-#include <limits.h>
-#ifdef HAVE_STDINT_H
-# include <stdint.h>
-#endif
-#ifdef HAVE_INTTYPES_H
-# include <inttypes.h>
-#endif
-
-#ifdef _WIN32
-#define UINT4 unsigned __int32
-#define UINT2 unsigned __int16
-#define POINTER unsigned char *
-#else
-#define UINT4 uint32_t
-#define UINT2 uint16_t
-#define POINTER unsigned char *
-#endif
-
-#include "settings.h"
-
-/* 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;
-
-LI_API void li_MD5_Init (li_MD5_CTX *);
-LI_API void li_MD5_Update (li_MD5_CTX *, const unsigned char *, unsigned int);
-LI_API void li_MD5_Final (unsigned char [16], li_MD5_CTX *);
-
-
-