| 56 | #endif |
| 57 | |
| 58 | struct AES_ctx |
| 59 | { |
| 60 | uint8_t RoundKey[AES_keyExpSize]; |
| 61 | #if (defined(CBC) && (CBC == 1)) || (defined(CTR) && (CTR == 1)) |
| 62 | uint8_t Iv[AES_BLOCKLEN]; |
| 63 | #endif |
| 64 | }; |
| 65 | |
| 66 | void AES_init_ctx(struct AES_ctx* ctx, const uint8_t* key); |
| 67 | #if (defined(CBC) && (CBC == 1)) || (defined(CTR) && (CTR == 1)) |
nothing calls this directly
no outgoing calls
no test coverage detected