5MP Motion Camera  1.1.1.1
A waterproof, low power, battery operated, motion activated, 5 mega-pixel, WiFi camera.
MD5.h
Go to the documentation of this file.
1 /* MD5.H - header file for MD5C.C
2  * Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
3  * rights reserved.
4  *
5  * License to copy and use this software is granted provided that it
6  * is identified as the "RSA Data Security, Inc. MD5 Message-Digest
7  * Algorithm" in all material mentioning or referencing this software
8  * or this function.
9  *
10  * License is also granted to make and use derivative works provided
11  * that such works are identified as "derived from the RSA Data
12  * Security, Inc. MD5 Message-Digest Algorithm" in all material
13  * mentioning or referencing the derived work.
14  *
15  * RSA Data Security, Inc. makes no representations concerning either
16  * the merchantability of this software or the suitability of this
17  * software for any particular purpose. It is provided "as is"
18  * without express or implied warranty of any kind.
19  * These notices must be retained in any copies of any part of this
20  * documentation and/or software.
21  */
22 
23 /* MD5 context. */
24 typedef struct {
25  UINT4 state[4]; /* state (ABCD) */
26  UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */
27  unsigned char buffer[64]; /* input buffer */
28 } MD5_CTX;
29 
30 void MD5Init (MD5_CTX *);
31 void MD5Update (MD5_CTX *, unsigned char *, unsigned int);
32 void MD5Final (unsigned char [16], MD5_CTX *);
33 
34 /* Function used by Websockets implementation */
35 void MD5 (unsigned char [], unsigned char [], unsigned int);
void MD5Update(MD5_CTX *, unsigned char *, unsigned int)
Definition: MD5.c:106
void MD5Init(MD5_CTX *)
Definition: MD5.c:92
unsigned long UINT4
Definition: global.h:22
Definition: MD5.h:24
void MD5(unsigned char [], unsigned char [], unsigned int)
Definition: MD5.c:297
void MD5Final(unsigned char [16], MD5_CTX *)
Definition: MD5.c:139