aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 3993e6c1a88acced288afea94da751ca5c9c7ef5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

   

aes_speed

Speed optimized Verilog implementation of the symmetric block cipher AES (Advanced Encryption Standard) as specified in the NIST document FIPS 197.

This core is modified version of the Cryptech AES core. Note that the name of the core modules are identical to that core. The purpose of this is to allow a drop-in replacement in Cryptech designs.

Status

First round of optimizations done. Core similates correctly. Has not yet been implemented in FPGA.

Introduction

This implementation supports 128 and 256 bit keys. The implementation is iterative and process one 128 block at a time. Blocks are processed on a word level with 4 S-boxes in the data path. The S-boxes for encryption are shared with the key expansion and the core can thus not do key update in parallel with block processing.

The encipher and decipher block processing datapaths are separated and basically self contained given access to a set of round keys and a block. This makes it possible to hard wire either encipher or decipher and allow the build tools to optimize away the other functionality which will reduce the size to about 50%. For cipher modes such as CTR, GCM decryption in the AES core will never be used and thus the decipher block processing can be removed.

The core has been equipped with 16 S-boxes for encipher and 16 Inverse S-boxes for decipher. This allows the core to perform the SubBytes and InverseSubBytes operations in the AES round functions in one cycle.

The key expansion does not share S-boxes with the encipher datapath, so the total number of S-boxes is 20.

Performance and area comparison

Number of cycles for the Cryptech old AES core: - AES-128 Encipher one block with key expansion: 57

Number of cycles for the Cryptech AES speed core: - AES-128 Encipher with key expansion: 27