Update aes.c

cosmetic: fixing whitespace / indentation
This commit is contained in:
kokke 2019-02-22 09:25:36 +01:00 committed by GitHub
parent 4b4b04b8fa
commit ca85e00de9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

2
aes.c
View File

@ -466,7 +466,7 @@ static void InvCipher(state_t* state, const uint8_t* RoundKey)
#if defined(ECB) && (ECB == 1)
void AES_ECB_encrypt(const struct AES_ctx *ctx, uint8_t* buf)
void AES_ECB_encrypt(const struct AES_ctx* ctx, uint8_t* buf)
{
// The next function call encrypts the PlainText with the Key using AES algorithm.
Cipher((state_t*)buf, ctx->RoundKey);