aboutsummaryrefslogtreecommitdiff
path: root/deps/crypto/md5.h
diff options
context:
space:
mode:
authorTwinaphex2019-05-14 11:44:06 +0200
committerGitHub2019-05-14 11:44:06 +0200
commit80209d1715398a16b6ace1c2e4cd0aab5c00248d (patch)
treeb7f82140860acabb2d0e3a5216f78bf98691c267 /deps/crypto/md5.h
parent5ffd1f23eb970679dfe8b540bc3df8e776dc9e17 (diff)
parentce188d4d7f3b9ad04867c49b424e8497c2ade92b (diff)
downloadpcsx_rearmed-80209d1715398a16b6ace1c2e4cd0aab5c00248d.tar.gz
pcsx_rearmed-80209d1715398a16b6ace1c2e4cd0aab5c00248d.tar.bz2
pcsx_rearmed-80209d1715398a16b6ace1c2e4cd0aab5c00248d.zip
Merge pull request #280 from aliaspider/master
add CHD support.
Diffstat (limited to 'deps/crypto/md5.h')
-rw-r--r--deps/crypto/md5.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/deps/crypto/md5.h b/deps/crypto/md5.h
new file mode 100644
index 0000000..e5b4490
--- /dev/null
+++ b/deps/crypto/md5.h
@@ -0,0 +1,33 @@
+/*********************************************************************
+* Filename: md5.h
+* Author: Brad Conte (brad AT bradconte.com)
+* Copyright:
+* Disclaimer: This code is presented "as is" without any guarantees.
+* Details: Defines the API for the corresponding MD5 implementation.
+*********************************************************************/
+
+#ifndef MD5_H
+#define MD5_H
+
+/*************************** HEADER FILES ***************************/
+#include <stddef.h>
+#include "crypto_types.h"
+
+/****************************** MACROS ******************************/
+#define MD5_BLOCK_SIZE 16 // MD5 outputs a 16 byte digest
+
+/**************************** DATA TYPES ****************************/
+
+typedef struct {
+ BYTE data[64];
+ WORD datalen;
+ unsigned long long bitlen;
+ WORD state[4];
+} MD5_CTX;
+
+/*********************** FUNCTION DECLARATIONS **********************/
+void md5_init(MD5_CTX *ctx);
+void md5_update(MD5_CTX *ctx, const BYTE data[], size_t len);
+void md5_final(MD5_CTX *ctx, BYTE hash[]);
+
+#endif // MD5_H