mirror of
https://github.com/kokke/tiny-AES-c
synced 2024-11-22 05:21:52 +03:00
Update aes.h
This commit is contained in:
parent
1855cf9631
commit
b5a39eeaad
4
aes.h
4
aes.h
@ -3,7 +3,7 @@
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
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_
|
||||
|
Loading…
Reference in New Issue
Block a user