MW_AES_Ctx_T

PIC32CX-BZ2

C

typedef struct MW_AES_Ctx_T
{
  CRYPT_AES_CTX aesCtx;
} MW_AES_Ctx_T;

Description

Structure for maintaining AES encryption context.

Field Documentation

FieldDescription
aesCtxUnderlying cryptographic library's AES context. This context is used to retain the internal state between encryption or decryption operations.

PIC32CX-BZ3

C

typedef struct MW_AES_Ctx_T
{
  struct sxblkcipher aesBlkCipher;
  struct sxkeyref    aesKeyRef;
} 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.