MW_AES_Ctx_T
C
typedef struct MW_AES_Ctx_T { struct sxblkcipher aesBlkCipher; struct sxkeyref aesKeyRef; struct sxaead aeadCtx; uint16_t aeadSize; } MW_AES_Ctx_T;
Description
Structure for maintaining AES encryption context.
Field Documentation
Field | Description |
---|---|
aesBlkCipher | Block cipher context for AES operations. |
aesKeyRef | Reference to the AES key for encryption or decryption. |
aeadCtx | Cipher context for AEAD operations. |
aeadSize | Data size for AEAD operations. |