summaryrefslogtreecommitdiff
path: root/include/aes.h
diff options
context:
space:
mode:
authorpixel <pixel>2007-06-11 11:29:16 +0000
committerpixel <pixel>2007-06-11 11:29:16 +0000
commite1953bb532fdcb7b629ab10cdc86f0253874d0fa (patch)
tree501f48952593d4855cb8ba5b030269ddf089c1dd /include/aes.h
parent9db92074f0a05b2b2e34f960b12c1fb64906131b (diff)
Adding missing header files.
Diffstat (limited to 'include/aes.h')
-rw-r--r--include/aes.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/aes.h b/include/aes.h
new file mode 100644
index 0000000..8f9c64f
--- /dev/null
+++ b/include/aes.h
@@ -0,0 +1,32 @@
+#ifndef _AES_H
+#define _AES_H
+
+#ifndef uint8
+#define uint8 unsigned char
+#endif
+
+#ifndef uint32
+#define uint32 unsigned long int
+#endif
+
+typedef struct
+{
+ uint32 erk[64]; /* encryption round keys */
+ uint32 drk[64]; /* decryption round keys */
+ int nr; /* number of rounds */
+}
+aes_context;
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+int aes_set_key( aes_context *ctx, uint8 *key, int nbits );
+void aes_encrypt( aes_context *ctx, uint8 input[16], uint8 output[16] );
+void aes_decrypt( aes_context *ctx, uint8 input[16], uint8 output[16] );
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* aes.h */