summaryrefslogtreecommitdiff
path: root/md5.h
diff options
context:
space:
mode:
authorFelix Wallin <nibbler.v1@gmail.com>2010-09-27 10:54:56 (GMT)
committer Felix Wallin <nibbler.v1@gmail.com>2010-09-27 10:54:56 (GMT)
commit99e2782ebc8445b9ff5e63c641ab4752896962d5 (patch)
treee1ba00d6d01f808670e88d839c983f35eea732d6 /md5.h
parent58d710b22484b8c7cc9dadefd305f3506d3ff139 (diff)
downloadpowder-99e2782ebc8445b9ff5e63c641ab4752896962d5.zip
powder-99e2782ebc8445b9ff5e63c641ab4752896962d5.tar.gz
Try to automerge with this, haha
Diffstat (limited to 'md5.h')
-rw-r--r--md5.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/md5.h b/md5.h
deleted file mode 100644
index 2ae3ae8..0000000
--- a/md5.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef MD5_H
-#define MD5_H
-
-struct md5_context
-{
- unsigned buf[4];
- unsigned bits[2];
- unsigned char in[64];
-};
-
-void md5_init(struct md5_context *context);
-void md5_update(struct md5_context *context, unsigned char const *buf, unsigned len);
-void md5_final(unsigned char digest[16], struct md5_context *context);
-void md5_transform(unsigned buf[4], const unsigned char in[64]);
-
-void md5_ascii(char *result, unsigned char const *buf, unsigned len);
-
-#endif