Unverified Commit ca85e00d authored by kokke's avatar kokke Committed by GitHub
Browse files

Update aes.c

cosmetic: fixing whitespace / indentation
parent 4b4b04b8
...@@ -466,7 +466,7 @@ static void InvCipher(state_t* state, const uint8_t* RoundKey) ...@@ -466,7 +466,7 @@ static void InvCipher(state_t* state, const uint8_t* RoundKey)
#if defined(ECB) && (ECB == 1) #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. // The next function call encrypts the PlainText with the Key using AES algorithm.
Cipher((state_t*)buf, ctx->RoundKey); Cipher((state_t*)buf, ctx->RoundKey);
......
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