summaryrefslogtreecommitdiff
path: root/src/contrib/crypt/md5.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:43 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:43 +0200
commit796609174e5ecb35fab992969e7690186840048a (patch)
tree1e4370d47f2a5c050b768c228e73e028a6611cb8 /src/contrib/crypt/md5.h
parent312fe18cb5f97143f3600b207e979bc559256b6f (diff)
tagging ychat-0.7.3ychat-0.7.3
Diffstat (limited to 'src/contrib/crypt/md5.h')
-rw-r--r--src/contrib/crypt/md5.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/contrib/crypt/md5.h b/src/contrib/crypt/md5.h
index 19c782c..0b9d532 100644
--- a/src/contrib/crypt/md5.h
+++ b/src/contrib/crypt/md5.h
@@ -1,25 +1,22 @@
#ifndef MD5_H
#define MD5_H
-namespace md5
-{
+namespace md5 {
#ifdef __alpha
typedef unsigned int uint32;
#else
-
typedef unsigned long uint32;
#endif
-struct MD5Context
-{
- uint32 buf[4];
- uint32 bits[2];
- unsigned char in[64];
+struct MD5Context {
+ uint32 buf[4];
+ uint32 bits[2];
+ unsigned char in[64];
};
void MD5Init(struct MD5Context *context);
void MD5Update(struct MD5Context *context, unsigned char const *buf,
- unsigned len);
+ unsigned len);
void MD5Final(unsigned char digest[16], struct MD5Context *context);
void MD5Transform(uint32 buf[4], uint32 const in[16]);