summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--aes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/aes.h b/aes.h
index 38f15a8..f4ed03c 100644
--- a/aes.h
+++ b/aes.h
@@ -4,5 +4,6 @@
#include <stdint.h>
void AES128_ECB_encrypt(uint8_t* input, uint8_t* key, uint8_t *output);
+void AES128_ECB_decrypt(uint8_t* input, uint8_t* key, uint8_t *output);
#endif //_AES_H_