summaryrefslogtreecommitdiffstats
path: root/utils/sbinfo/aes128_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/sbinfo/aes128_impl.h')
-rw-r--r--utils/sbinfo/aes128_impl.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/utils/sbinfo/aes128_impl.h b/utils/sbinfo/aes128_impl.h
deleted file mode 100644
index 7f1b966cd3..0000000000
--- a/utils/sbinfo/aes128_impl.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <stdio.h>
-#include <stdint.h>
-#include <string.h>
-
-typedef uint8_t byte;
-
-void xor_(byte *a, byte *b, int n);
-void EncryptAES(byte *msg, byte *key, byte *c);
-void DecryptAES(byte *c, byte *key, byte *m);
-void Pretty(byte* b,int len,const char* label);