MCPcopy Create free account
hub / github.com/S3N4T0R-0X0/PixelCode-Attack / AES_ctx

Class AES_ctx

payload.cpp:58–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56#endif
57
58struct 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
66void AES_init_ctx(struct AES_ctx* ctx, const uint8_t* key);
67#if (defined(CBC) && (CBC == 1)) || (defined(CTR) && (CTR == 1))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected