| 580 | } |
| 581 | |
| 582 | void AES_ECB_decrypt(const struct AES_ctx* ctx, uint8_t* buf) |
| 583 | { |
| 584 | // The next function call decrypts the PlainText with the Key using AES algorithm. |
| 585 | InvCipher((state_t*)buf, ctx->RoundKey); |
| 586 | } |
| 587 | |
| 588 | |
| 589 | #endif // #if defined(ECB) && (ECB == 1) |
nothing calls this directly
no test coverage detected