1.2.11.4.7 AES_Wrapper_SetEncryptEcbKey Function
C
void AES_Wrapper_SetEncryptEcbKey(uint8_t *key)Summary
Sets the key for further AES ECB encryption.
Description
This function sets the 16-byte key for further AES ECB encryption.
Precondition
None.
Parameters
| Param | Description |
|---|---|
| key | Pointer to buffer holding the 16-byte key itself |
Returns
None.
Example
uint8_t key[16];
AES_Wrapper_SetEncryptEcbKey(key);Remarks
None.
