Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
BitchX
GitHub Repository: BitchX/BitchX1.3
Path: blob/master/dll/arcfour/md5.h
1072 views
1
/* typedef a 32 bit type */
2
typedef unsigned long int UINT_32;
3
4
/* Data structure for MD5 (Message Digest) computation */
5
typedef struct {
6
UINT_32 i[2]; /* number of _bits_ handled mod 2^64 */
7
UINT_32 buf[4]; /* scratch buffer */
8
unsigned char in[64]; /* input buffer */
9
unsigned char digest[16]; /* actual digest after MD5Final call */
10
} MD5_CTX;
11
12
void MD5Final(MD5_CTX *);
13
void MD5Update(MD5_CTX *, unsigned char *, unsigned int);
14
void MD5Init(MD5_CTX *);
15
16