mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-11-28 01:13:34 +03:00
20b9b1c193
Fixes #550.
8 lines
213 B
Plaintext
8 lines
213 B
Plaintext
irred : [8]
|
|
irred = 0x1b
|
|
// endianness difference from Cryptol-1 test
|
|
xtimes a = (if a ! (length a - 1) then a' ^ irred else a')
|
|
where a' = a << 1
|
|
|
|
check21 = [ xtimes y | y <- [ 1, 12, 192 ] ] == [ 2, 24, 155 ]
|