Commit b5a39eea authored by kokke's avatar kokke
Browse files

Update aes.h

parent 1855cf96
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
#include <stdint.h> #include <stdint.h>
void AES128_ECB_encrypt(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, uint8_t* key, uint8_t *output); void AES128_ECB_decrypt(uint8_t* input, const uint8_t* key, uint8_t *output);
#endif //_AES_H_ #endif //_AES_H_
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment