aboutsummaryrefslogtreecommitdiff
path: root/deps/crypto/crypto_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/crypto/crypto_types.h')
-rw-r--r--deps/crypto/crypto_types.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/deps/crypto/crypto_types.h b/deps/crypto/crypto_types.h
new file mode 100644
index 0000000..697c983
--- /dev/null
+++ b/deps/crypto/crypto_types.h
@@ -0,0 +1,15 @@
+/*********************************************************************
+* Filename: crypto_types.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 AES implementation.
+*********************************************************************/
+
+#ifndef CRYPTO_TYPES_H
+#define CRYPTO_TYPES_H
+
+typedef unsigned char BYTE; // 8-bit byte
+typedef unsigned int WORD; // 32-bit word, change to "long" for 16-bit machines
+
+#endif