summaryrefslogtreecommitdiffstats
path: root/aes.h
diff options
context:
space:
mode:
authorRaptorFactor <raptorfactor@raptorfactor.com>2017-01-04 01:41:41 +0100
committerRaptorFactor <raptorfactor@raptorfactor.com>2017-01-04 01:41:41 +0100
commit202c3b9b4247277f5df8bfa7578569894a8312cf (patch)
tree75126c9ea851cabcbebf7ef5dafc007d043b7198 /aes.h
parents/strncmp/memcmp/g (diff)
downloadtiny-AES-c-202c3b9b4247277f5df8bfa7578569894a8312cf.tar
tiny-AES-c-202c3b9b4247277f5df8bfa7578569894a8312cf.tar.gz
tiny-AES-c-202c3b9b4247277f5df8bfa7578569894a8312cf.tar.bz2
tiny-AES-c-202c3b9b4247277f5df8bfa7578569894a8312cf.tar.lz
tiny-AES-c-202c3b9b4247277f5df8bfa7578569894a8312cf.tar.xz
tiny-AES-c-202c3b9b4247277f5df8bfa7578569894a8312cf.tar.zst
tiny-AES-c-202c3b9b4247277f5df8bfa7578569894a8312cf.zip
Diffstat (limited to 'aes.h')
-rw-r--r--aes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/aes.h b/aes.h
index 708a09c..e86ab7f 100644
--- a/aes.h
+++ b/aes.h
@@ -22,8 +22,8 @@
#if defined(ECB) && ECB
-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(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);
#endif // #if defined(ECB) && ECB