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

FieldDescription
aesBlkCipherBlock cipher context for AES operations.
aesKeyRefReference to the AES key for encryption or decryption.
aeadCtxCipher context for AEAD operations.
aeadSizeData size for AEAD operations.