Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Implementation of AES ECB driver. More...
Go to the source code of this file.
Functions | |
| __weak bool | nrf_ecb_init (void) |
| Initialize and power on the ECB peripheral. | |
| __weak bool | nrf_ecb_crypt (uint8_t *dest_buf, const uint8_t *src_buf) |
| Encrypt/decrypt 16-byte data using current key. | |
| __weak void | nrf_ecb_set_key (const uint8_t *key) |
| Set the key to be used for encryption/decryption. | |
Variables | |
| static uint8_t | ecb_data [48] |
| ECB data structure for RNG peripheral to access. | |
| static uint8_t * | ecb_key |
| Key: Starts at ecb_data. | |
| static uint8_t * | ecb_cleartext |
| Cleartext: Starts at ecb_data + 16 bytes. | |
| static uint8_t * | ecb_ciphertext |
| Ciphertext: Starts at ecb_data + 32 bytes. | |
Detailed Description
Implementation of AES ECB driver.
Definition in file nrf_ecb_wifi.c.
Variable Documentation
uint8_t* ecb_ciphertext [static] |
Ciphertext: Starts at ecb_data + 32 bytes.
Definition at line 31 of file nrf_ecb_wifi.c.
uint8_t* ecb_cleartext [static] |
Cleartext: Starts at ecb_data + 16 bytes.
Definition at line 30 of file nrf_ecb_wifi.c.
uint8_t ecb_data[48] [static] |
ECB data structure for RNG peripheral to access.
Definition at line 28 of file nrf_ecb_wifi.c.
uint8_t* ecb_key [static] |
Key: Starts at ecb_data.
Definition at line 29 of file nrf_ecb_wifi.c.
Generated on Mon Jul 25 2022 10:33:26 by
1.7.2