summaryrefslogtreecommitdiffstats
path: root/aes.h
diff options
context:
space:
mode:
authorMatteo Brichese <matteo.brichese@wunderbar.com>2017-06-06 02:07:34 +0200
committerMatteo Brichese <matteo.brichese@wunderbar.com>2017-06-06 02:07:34 +0200
commitc26fb6a5ec330fd790808126f272cb2daa2a7617 (patch)
treed7dab7df3f9e26332ebdee2ea3b150d627cae2e2 /aes.h
parentupdated readme (diff)
downloadtiny-AES-c-c26fb6a5ec330fd790808126f272cb2daa2a7617.tar
tiny-AES-c-c26fb6a5ec330fd790808126f272cb2daa2a7617.tar.gz
tiny-AES-c-c26fb6a5ec330fd790808126f272cb2daa2a7617.tar.bz2
tiny-AES-c-c26fb6a5ec330fd790808126f272cb2daa2a7617.tar.lz
tiny-AES-c-c26fb6a5ec330fd790808126f272cb2daa2a7617.tar.xz
tiny-AES-c-c26fb6a5ec330fd790808126f272cb2daa2a7617.tar.zst
tiny-AES-c-c26fb6a5ec330fd790808126f272cb2daa2a7617.zip
Diffstat (limited to 'aes.h')
-rw-r--r--aes.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/aes.h b/aes.h
index e86ab7f..b5be559 100644
--- a/aes.h
+++ b/aes.h
@@ -19,22 +19,20 @@
#endif
-
#if defined(ECB) && ECB
-void AES128_ECB_encrypt(const uint8_t* input, const uint8_t* key, uint8_t *output);
-void AES128_ECB_decrypt(const uint8_t* input, const uint8_t* key, uint8_t *output);
+void AES_ECB_encrypt(const uint8_t* input, const uint8_t* key, uint8_t *output);
+void AES_ECB_decrypt(const uint8_t* input, const uint8_t* key, uint8_t *output);
#endif // #if defined(ECB) && ECB
#if defined(CBC) && CBC
-void AES128_CBC_encrypt_buffer(uint8_t* output, uint8_t* input, uint32_t length, const uint8_t* key, const uint8_t* iv);
-void AES128_CBC_decrypt_buffer(uint8_t* output, uint8_t* input, uint32_t length, const uint8_t* key, const uint8_t* iv);
+void AES_CBC_encrypt_buffer(uint8_t* output, uint8_t* input, uint32_t length, const uint8_t* key, const uint8_t* iv);
+void AES_CBC_decrypt_buffer(uint8_t* output, uint8_t* input, uint32_t length, const uint8_t* key, const uint8_t* iv);
#endif // #if defined(CBC) && CBC
-
#endif //_AES_H_