summaryrefslogtreecommitdiff
path: root/includes/md5.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-11-17 19:43:59 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-11-17 19:43:59 (GMT)
commite3594aba9e05c6865d396418c028049cda92c2f3 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /includes/md5.h
parentfb43f7d23e99765ae093fc45608901cb5907d1d8 (diff)
downloadpowder-e3594aba9e05c6865d396418c028049cda92c2f3.zip
powder-e3594aba9e05c6865d396418c028049cda92c2f3.tar.gz
Remove old code
Diffstat (limited to 'includes/md5.h')
-rw-r--r--includes/md5.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/includes/md5.h b/includes/md5.h
deleted file mode 100644
index a8ef123..0000000
--- a/includes/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