summaryrefslogtreecommitdiffstats
path: root/aes.h
diff options
context:
space:
mode:
Diffstat (limited to 'aes.h')
-rw-r--r--aes.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/aes.h b/aes.h
index eae5bb2..4941033 100644
--- a/aes.h
+++ b/aes.h
@@ -5,5 +5,7 @@
void AES128_ECB_encrypt(uint8_t* input, const uint8_t* key, uint8_t *output);
void AES128_ECB_decrypt(uint8_t* input, const uint8_t* key, uint8_t *output);
+void AES128_ECB_encrypt_nc(uint8_t* data, const uint8_t* key);
+void AES128_ECB_decrypt_nc(uint8_t* data, const uint8_t* key);
#endif //_AES_H_