summaryrefslogtreecommitdiff
path: root/tools/4/source/src/aes_omac.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/4/source/src/aes_omac.h')
-rw-r--r--tools/4/source/src/aes_omac.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/4/source/src/aes_omac.h b/tools/4/source/src/aes_omac.h
new file mode 100644
index 0000000..686337c
--- /dev/null
+++ b/tools/4/source/src/aes_omac.h
@@ -0,0 +1,10 @@
+#ifndef _AES_OMAC_H_
+#define _AES_OMAC_H_
+
+#include "types.h"
+
+#define AES_OMAC1_DIGEST_SIZE 0x10
+
+void aes_omac1(u8 *digest, u8 *input, u32 length, u8 *key, u32 keybits);
+
+#endif