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
Field | Description |
---|---|
aesCtx | Underlying 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
Field | Description |
---|---|
aesBlkCipher | Block cipher context for AES operations. |
aesKeyRef | Reference to the AES key for encryption or decryption. |