51 #define AES128_KEY_SIZE 16
53 #ifndef CC3000_UNENCRYPTED_SMART_CONFIG
124 #endif //CC3000_UNENCRYPTED_SMART_CONFIG
128 #endif // __cplusplus
void aes_decrypt(UINT8 *state, UINT8 *key)
AES128 decryption: Given AES128 key and 16 bytes cipher text, plain text of 16 bytes is computed The ...
Definition: security.c:470
void aes_encrypt(UINT8 *state, UINT8 *key)
AES128 encryption: Given AES128 key and 16 bytes plain text, cipher text of 16 bytes is computed...
Definition: security.c:446
INT32 aes_write_key(UINT8 *key)
writes AES128 key from EEPROM Writes the AES128 key to fileID #12 in EEPROM
Definition: security.c:514
INT32 aes_read_key(UINT8 *key)
Reads AES128 key from EEPROM Reads the AES128 key from fileID #12 in EEPROM returns an error if the k...
Definition: security.c:491