From b5a39eeaadb8eb8d5d216347081f55fc437e7e0f Mon Sep 17 00:00:00 2001 From: kokke Date: Mon, 8 Dec 2014 09:53:05 +0100 Subject: Update aes.h --- aes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aes.h b/aes.h index f4ed03c..eae5bb2 100644 --- a/aes.h +++ b/aes.h @@ -3,7 +3,7 @@ #include -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); +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); #endif //_AES_H_ -- cgit v1.2.3