This collection consists of the following highly optimized FIPS 197 compliant AES software implementations.
- AES-128 key expansion.
- Single-block AES-128 encryption/decryption.
- AES-128 encryption/decryption in CTR mode.
- AES-192 key expansion.
- AES-192 encryption/decryption in CTR mode.
- AES-256 key expansion.
- AES-256 encryption/decryption in CTR mode.
- AES-128 key expansion to bitsliced state.
- Constant-time bitsliced AES-128 encryption/decryption in CTR mode (protected against timing attacks).
- Masked constant-time bitsliced AES-128 encryption/decryption in CTR mode (protected against timing attacks and first-order side-channel attacks).
They are part of the publication "All the AES You Need on Cortex-M3 and M4", published at SAC 2016, by Peter Schwabe and Ko Stoffelen. The paper is available here.
All numbers mentioned below were obtained on the STM32L100C (Cortex-M3) and STM32F407 (Cortex-M4) development boards. Encryption/decryption speeds are cycle/block averages for processing 4096 bytes, averaging over 10000 runs with random inputs, nonces, and keys. Note that all implementations are optimized for speed and therefore fully unrolled. ROM sizes can be reduced drastically with only a small penalty in cycle counts.
Algorithm | Speed M3 (cycles) | Speed M4 (cycles) | ROM (bytes) | RAM (bytes) |
---|---|---|---|---|
AES-128 key expansion | 249.8 | 244.9 | 742 (code) + 1024 (data) | 176 (in/out) + 32 (stack) |
AES-128 single block encryption | 637.5 | 634.7 | 1970 (code) + 1024 (data) | 176+2m (in/out) + 40 (stack) |
AES-128 encryption/decryption in CTR mode | 531.8 | 527.9 | 2128 (code) + 1024 (data) | 192+2m (in/out) + 68 (stack) |
AES-192 key expansion | 232.9 | 232.2 | 682 (code) + 1024 (data) | 208 (in/out) + 32 (stack) |
AES-192 encryption/decryption in CTR mode | 651.0 | 644.0 | 2512 (code) + 1024 (data) | 224+2m (in/out) + 68 (stack) |
AES-256 key expansion | 310.8 | 309.9 | 958 (code) + 1024 (data) | 240 (in/out) + 28 (stack) |
AES-256 encryption/decryption in CTR mode | 767.0 | 760.7 | 2896 (code) + 1024 (data) | 256+2m (in/out) + 68 (stack) |
AES-128 key expansion to bitsliced state | 1024.8 | 1021.9 | 3434 (code) + 1036 (data) | 368 (in/out) + 184 (stack) |
Constant-time bitsliced AES-128 encryption/decryption in CTR mode | 1618.6 | 1616.6 | 11806 (code) + 12 (data) | 368+2m (in/out) + 104 (stack) |
Masked constant-time bitsliced AES-128 encryption/decryption in CTR mode | N/A | 3439.5 (generating randomness) + 5288.1 (rest) | 39224 (code) + 12 (data) | 368+2m (in/out) + 1312 (storing randomness) + 272 (stack rest) |
All implementations come with Makefiles for the STM32L100C and STM32F407. This project uses the libopencm3 firmware and the arm-none-eabi toolchain. See, e.g., this repository for more detailed instructions on getting those to work. Make sure the paths are set up correctly in the Makefiles. The implementations include examples in C on how to call the functions written in Thumb-2 assembly. Compile by executing make
.
One can flash the code with a JTAG programmer or over USB using STLINK. For flashing over USB, make sure that the board is connected to the pc, install stlink, and execute./deploy.sh <file>.bin
to flash the code.
The examples in C provide output over USART. To read this, use a USB to TTL adapter and connect TX to PA3, RX to PA2, and GND to GND. Execute common/host.py
to start a simple listener for serial communication to /dev/ttyUSB0
. This uses the pyserial
module.