Adeon
Loading...
Searching...
No Matches
MD5.h
1/*
2 * This is an OpenSSL-compatible implementation of the RSA Data Security,
3 * Inc. MD5 Message-Digest Algorithm (RFC 1321).
4 *
5 * Written by Solar Designer <solar at openwall.com> in 2001, and placed
6 * in the public domain. There's absolutely no warranty.
7 *
8 * This differs from Colin Plumb's older public domain implementation in
9 * that no 32-bit integer data type is required, there's no compile-time
10 * endianness configuration, and the function prototypes match OpenSSL's.
11 * The primary goals are portability and ease of use.
12 *
13 * This implementation is meant to be fast, but not as fast as possible.
14 * Some known optimizations are not included to reduce source code size
15 * and avoid compile-time configuration.
16 */
17
18/*
19 * Updated by Scott MacVicar for arduino
20 * <scott@macvicar.net>
21 */
22
23#ifndef MD5_h
24#define MD5_h
25
26#include "Arduino.h"
27#include <string.h>
28
29typedef unsigned long MD5_u32plus;
30
31typedef struct {
32 MD5_u32plus lo, hi;
33 MD5_u32plus a, b, c, d;
34 unsigned char buffer[64];
35 MD5_u32plus block[16];
36} MD5_CTX;
37
38class MD5
39{
40public:
41 MD5();
42 static unsigned char* make_hash(char *arg);
43 static unsigned char* make_hash(char *arg,size_t size);
44 static char* make_digest(const unsigned char *digest, int len);
45 static const void *body(void *ctxBuf, const void *data, size_t size);
46 static void MD5Init(void *ctxBuf);
47 static void MD5Final(unsigned char *result, void *ctxBuf);
48 static void MD5Update(void *ctxBuf, const void *data, size_t size);
49};
50
51#endif
Definition: MD5.h:39
Definition: MD5.h:31