Update aes.c

This commit is contained in:
kokke
2014-06-03 01:00:56 +02:00
parent 376f23ab98
commit b459336cbb

2
aes.c
View File

@@ -315,7 +315,7 @@ static void Cipher()
/* Public functions: */ /* Public functions: */
/*****************************************************************************/ /*****************************************************************************/
void AES128_ECB(uint8_t* input, uint8_t* key, uint8_t *output) void AES128_ECB_encrypt(uint8_t* input, uint8_t* key, uint8_t *output)
{ {
// Copy the Key and CipherText // Copy the Key and CipherText
Key = key; Key = key;