Commit 393e7ed9 authored by Alasdair's avatar Alasdair Committed by Bill McSpadden
Browse files

Fix kext warning

Use fixed-length vectors for AES tables

Note that because we have `default Order dec`, Sail vectors
are indexed the same as bitvectors, in decreasing order, hence why
the indexing in sbox_lookup becomes
```
table[255 - unsigned(x)]
```
rather than
```
table[unsigned(x)]
```
The alternative would be to flip all the literals
parent f7163af8
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment