fact
stringlengths
5
19.5k
statement
stringlengths
5
19.5k
proof
stringlengths
0
4.29k
type
stringclasses
7 values
symbolic_name
stringlengths
0
36
library
stringclasses
13 values
filename
stringclasses
71 values
imports
listlengths
0
23
deps
listlengths
0
14
docstring
stringclasses
0 values
line_start
int64
1
1.24k
line_end
int64
1
1.24k
has_proof
bool
2 classes
source_url
stringclasses
1 value
commit
stringclasses
1 value
Salsa20 : {r} (8 >= width r) => [64][8] -> [64][8] Salsa20 xs = join ar where ar = [ littleendian_inverse words | words <- xw + zs@(`r/2 : [8]) ] xw = [ littleendian xi | xi <- split xs ] zs = [xw] # [ doubleround zi | zi <- zs ]
Salsa20 : {r} (8 >= width r) => [64][8] -> [64][8]
Salsa20 xs = join ar where ar = [ littleendian_inverse words | words <- xw + zs@(`r/2 : [8]) ] xw = [ littleendian xi | xi <- split xs ] zs = [xw] # [ doubleround zi | zi <- zs ]
function
Salsa20
examples.MiniLock.prim
examples/MiniLock/prim/Salsa20.cry
[ "LittleEndian" ]
[ ">=", "doubleround", "join", "littleendian", "littleendian_inverse", "split", "width", "xs" ]
null
120
120
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
Salsa20_expansion : {a} (a >= 1, 2 >= a) => ([16*a][8], [16][8]) -> [64][8] Salsa20_expansion(k, n) = z where [s0, s1, s2, s3] = split "expand 32-byte k" : [4][4][8] [t0, t1, t2, t3] = split "expand 16-byte k" : [4][4][8] x = if(`a == (2 : [8])) then s0 # k0 # s1 # n # s2 # k1 # s3 ...
Salsa20_expansion : {a} (a >= 1, 2 >= a) => ([16*a][8], [16][8]) -> [64][8]
Salsa20_expansion(k, n) = z where [s0, s1, s2, s3] = split "expand 32-byte k" : [4][4][8] [t0, t1, t2, t3] = split "expand 16-byte k" : [4][4][8] x = if(`a == (2 : [8])) then s0 # k0 # s1 # n # s2 # k1 # s3 else t0 # k0 # t1 # n # t2 # k0 # t3 z = Salsa20 `{r=20} x [k0,...
function
Salsa20_expansion
examples.MiniLock.prim
examples/MiniLock/prim/Salsa20.cry
[ "LittleEndian" ]
[ "==", ">=", "Salsa20", "s0", "s1", "s1,", "s2", "s3", "split", "t1", "t2", "t3" ]
null
175
175
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
Salsa20_encrypt : {a, l} (a >= 1, 2 >= a, l <= 2^^70) => ([16*a][8], [8][8], [l][8]) -> [l][8] Salsa20_encrypt(k, v, m) = c where salsa = take (join [ Salsa20_expansion(k, v#(split i)) | i <- [0, 1 ... ] ]) c = m ^ salsa
Salsa20_encrypt : {a, l} (a >= 1, 2 >= a, l <= 2^^70) => ([16*a][8], [8][8], [l][8]) -> [l][8]
Salsa20_encrypt(k, v, m) = c where salsa = take (join [ Salsa20_expansion(k, v#(split i)) | i <- [0, 1 ... ] ]) c = m ^ salsa
function
Salsa20_encrypt
examples.MiniLock.prim
examples/MiniLock/prim/Salsa20.cry
[ "LittleEndian" ]
[ "<=", ">=", "Salsa20_expansion", "join", "split", "take" ]
null
185
185
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
HSalsa20 : {r} (8 >= width r) => Key -> Nonce -> [8][32] HSalsa20 key0 nonce0 = zs @@ ([0,5,10,15,6,7,8,9] : [_][8]) where zs = infZs @ (`r/2 :[8]) infZs = [xs] # [ doubleround x | x <- infZs ] nonce = [ littleendian (split n) | n <- split (join nonce0)] [x0,x5,x10,x15] ...
HSalsa20 : {r} (8 >= width r) => Key -> Nonce -> [8][32]
HSalsa20 key0 nonce0 = zs @@ ([0,5,10,15,6,7,8,9] : [_][8]) where zs = infZs @ (`r/2 :[8]) infZs = [xs] # [ doubleround x | x <- infZs ] nonce = [ littleendian (split n) | n <- split (join nonce0)] [x0,x5,x10,x15] = Salsa20_Constant [x1,x2,x3,x4,x11,x12,x13,x14] = [...
function
HSalsa20
examples.MiniLock.prim
examples/MiniLock/prim/Salsa20.cry
[ "LittleEndian" ]
[ ">=", "Key", "Nonce", "Salsa20_Constant", "doubleround", "join", "littleendian", "split", "width", "xs" ]
null
191
191
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
HSalsa20_bytes : {r} (8 >= width r) => Key -> Nonce -> [32][8] HSalsa20_bytes key0 nonce0 = join [littleendian_inverse x | x <- HSalsa20 `{r=r} key0 nonce0]
HSalsa20_bytes : {r} (8 >= width r) => Key -> Nonce -> [32][8]
HSalsa20_bytes key0 nonce0 = join [littleendian_inverse x | x <- HSalsa20 `{r=r} key0 nonce0]
function
HSalsa20_bytes
examples.MiniLock.prim
examples/MiniLock/prim/Salsa20.cry
[ "LittleEndian" ]
[ ">=", "HSalsa20", "Key", "Nonce", "join", "width" ]
null
205
205
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
Salsa20_Constant : [4][32] Salsa20_Constant = [littleendian (split x) | x <- split (join "expand 32-byte k") : [4][32]]
Salsa20_Constant : [4][32]
Salsa20_Constant = [littleendian (split x) | x <- split (join "expand 32-byte k") : [4][32]]
function
Salsa20_Constant
examples.MiniLock.prim
examples/MiniLock/prim/Salsa20.cry
[ "LittleEndian" ]
[ "join", "split" ]
null
212
212
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
XSalsa20 : {r} (8 >= width r) => Key -> Nonce -> Counter -> [64][8] XSalsa20 key0 nonce0 ctr = split (join [littleendian (split (x' + z')) | x' <- xs' | z' <- zs']) where nonce = [ littleendian (split n) | n <- split (join nonce0)] subKey = HSalsa20 `{r=r} key0 nonce0 // 'zs' in the l...
XSalsa20 : {r} (8 >= width r) => Key -> Nonce -> Counter -> [64][8]
XSalsa20 key0 nonce0 ctr = split (join [littleendian (split (x' + z')) | x' <- xs' | z' <- zs']) where nonce = [ littleendian (split n) | n <- split (join nonce0)] subKey = HSalsa20 `{r=r} key0 nonce0 // 'zs' in the literature [x'0,x'5,x'10,x'15] = Salsa20_Constan...
function
XSalsa20
examples.MiniLock.prim
examples/MiniLock/prim/Salsa20.cry
[ "LittleEndian" ]
[ ">=", "Counter", "HSalsa20", "Key", "Nonce", "Salsa20_Constant", "doubleround", "join", "littleendian", "reverse", "split", "width" ]
null
215
215
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
XSalsa20_expansion : {n,r} (8 >= width r, 64 >= width n) => Key -> Nonce -> [n][8] XSalsa20_expansion k n = take (join ks) where ks = [XSalsa20 `{r=r} k n i | i <- [0...]]
XSalsa20_expansion : {n,r} (8 >= width r, 64 >= width n) => Key -> Nonce -> [n][8]
XSalsa20_expansion k n = take (join ks) where ks = [XSalsa20 `{r=r} k n i | i <- [0...]]
function
XSalsa20_expansion
examples.MiniLock.prim
examples/MiniLock/prim/Salsa20.cry
[ "LittleEndian" ]
[ ">=", "Key", "Nonce", "join", "ks", "take", "width" ]
null
235
235
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
XSalsa20_encrypt : {n,r} (8 >= width r, 64 >= width n) => Key -> Nonce -> [n][8] -> [n][8] XSalsa20_encrypt k n msg = ks ^ msg where ks = XSalsa20_expansion `{r=r} k n
XSalsa20_encrypt : {n,r} (8 >= width r, 64 >= width n) => Key -> Nonce -> [n][8] -> [n][8]
XSalsa20_encrypt k n msg = ks ^ msg where ks = XSalsa20_expansion `{r=r} k n
function
XSalsa20_encrypt
examples.MiniLock.prim
examples/MiniLock/prim/Salsa20.cry
[ "LittleEndian" ]
[ ">=", "Key", "Nonce", "XSalsa20_expansion", "ks", "width" ]
null
240
240
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
Salsa20Words : [16][32] -> [16][32] Salsa20Words x = [join (reverse r) | r <- split `{each=4} (Salsa20 `{r=20} (join [reverse (split `{4} v) | v <- x]))]
Salsa20Words : [16][32] -> [16][32]
Salsa20Words x = [join (reverse r) | r <- split `{each=4} (Salsa20 `{r=20} (join [reverse (split `{4} v) | v <- x]))]
function
Salsa20Words
examples.MiniLock.prim
examples/MiniLock/prim/Salsa20.cry
[ "LittleEndian" ]
[ "Salsa20", "join", "reverse", "split" ]
null
272
272
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
columnround_opt_is_columnround xs = columnround xs == columnround_opt xs
columnround_opt_is_columnround xs = columnround xs == columnround_opt xs
function
columnround_opt_is_columnround
examples.MiniLock.prim
examples/MiniLock/prim/Salsa20.cry
[ "LittleEndian" ]
[ "==", "columnround", "columnround_opt", "xs" ]
null
93
93
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
kats_pass = ~zero == [ SCrypt `{N=2^^4,r=1} "" "" == [ 0x77, 0xd6, 0x57, 0x62, 0x38, 0x65, 0x7b, 0x20 , 0x3b, 0x19, 0xca, 0x42, 0xc1, 0x8a, 0x04, 0x97 , 0xf1, 0x6b, 0x48, 0x44, 0xe3, 0x07, 0x4a, 0xe8 , 0xdf, 0xdf, 0xfa, 0x3f, 0xed, 0xe2, 0x14, 0x42 , 0xfc,...
kats_pass = ~zero == [ SCrypt `{N=2^^4,r=1} "" "" == [ 0x77, 0xd6, 0x57, 0x62, 0x38, 0x65, 0x7b, 0x20 , 0x3b, 0x19, 0xca, 0x42, 0xc1, 0x8a, 0x04, 0x97 , 0xf1, 0x6b, 0x48, 0x44, 0xe3, 0x07, 0x4a, 0xe8 , 0xdf, 0xdf, 0xfa, 0x3f, 0xed, 0xe2, 0x14, 0x42 , 0xfc,...
property
kats_pass
examples.MiniLock.prim
examples/MiniLock/prim/SCrypt.cry
[ "Salsa20", "PBKDF2" ]
[ "==", "SCrypt" ]
null
72
95
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
BlockMix : {r} (fin r, r >= 1) => [2*r][64*8] -> [2*r][64*8] BlockMix B = ys @@ ([0,2..2*r-2] # [1,3..2*r-1]) where rs = [B!0] # [ join (Salsa20 `{r=8} (split (X ^ bi))) | X <- rs | bi <- B ] ys = drop `{1} rs // SMix with the ROMix algorithm (section 5) inlined (specialized to BlockMix) // N = 2^^17
BlockMix : {r} (fin r, r >= 1) => [2*r][64*8] -> [2*r][64*8]
BlockMix B = ys @@ ([0,2..2*r-2] # [1,3..2*r-1]) where rs = [B!0] # [ join (Salsa20 `{r=8} (split (X ^ bi))) | X <- rs | bi <- B ] ys = drop `{1} rs // SMix with the ROMix algorithm (section 5) inlined (specialized to BlockMix) // N = 2^^17
function
BlockMix
examples.MiniLock.prim
examples/MiniLock/prim/SCrypt.cry
[ "Salsa20", "PBKDF2" ]
[ ">=", "Salsa20", "drop", "fin", "join", "split" ]
null
11
11
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
SMix : {N,r} ( fin r , r >= 1 , N >= 1 , 512 >= width N , 1 + width N >= width (N-1) ) => [128 * 8 * r] -> [128 * 8 * r] SMix B = join (Xs ! 0) where Vs = [split B] # [ BlockMix x | x <- Vs | _ <- [0..N-1] : [_][width N + 1]] V = take `{front=N} Vs ...
SMix : {N,r} ( fin r , r >= 1 , N >= 1 , 512 >= width N , 1 + width N >= width (N-1) ) => [128 * 8 * r] -> [128 * 8 * r]
SMix B = join (Xs ! 0) where Vs = [split B] # [ BlockMix x | x <- Vs | _ <- [0..N-1] : [_][width N + 1]] V = take `{front=N} Vs Xs : [N+1][2*r][64*8] Xs = [Vs!0] # [ (x' where j = integerify x T = x ^ (V@j) x' = BlockMix...
function
SMix
examples.MiniLock.prim
examples/MiniLock/prim/SCrypt.cry
[ "Salsa20", "PBKDF2" ]
[ ">=", "BlockMix", "fin", "join", "reverse", "split", "take", "width" ]
null
19
24
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
MFcrypt : { pwBytes, saltBytes, dkLen, r, N } ( fin dkLen , 4*r >= 1 , 8 * dkLen >= 1 , 64 >= width (8 * pwBytes) , 32 >= width (4 + saltBytes) , 512 >= width N, 1+width N >= width (N-1) , 32 >= width ((255 + 8 * dkLen) / 256) , 32 >= widt...
MFcrypt : { pwBytes, saltBytes, dkLen, r, N } ( fin dkLen , 4*r >= 1 , 8 * dkLen >= 1 , 64 >= width (8 * pwBytes) , 32 >= width (4 + saltBytes) , 512 >= width N, 1+width N >= width (N-1) , 32 >= width ((255 + 8 * dkLen) / 256) , 32 >= widt...
MFcrypt P S = split DK where B = pbkdf2 `{C=1} P S B' = SMix `{N=N,r=r} B DK = pbkdf2 `{dkLenBits=dkLen*8, C=1} P (split B')
function
MFcrypt
examples.MiniLock.prim
examples/MiniLock/prim/SCrypt.cry
[ "Salsa20", "PBKDF2" ]
[ ">=", "SMix", "fin", "pbkdf2", "split", "width" ]
null
41
52
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
SCrypt : {pwBytes, saltBytes, dkBytes, r, N} ( fin dkBytes, 4*r >= 1 , 8 * dkBytes >= 1 , 32 >= width ((255 + 8 * dkBytes) / 256) , 64 >= width (8 * pwBytes) , 512 >= width N, 1+width N >= width (N-1) , 32 >= width (4 + saltBytes) , 32 >= width (4 + 128 * r...
SCrypt : {pwBytes, saltBytes, dkBytes, r, N} ( fin dkBytes, 4*r >= 1 , 8 * dkBytes >= 1 , 32 >= width ((255 + 8 * dkBytes) / 256) , 64 >= width (8 * pwBytes) , 512 >= width N, 1+width N >= width (N-1) , 32 >= width (4 + saltBytes) , 32 >= width (4 + 128 * r...
SCrypt P S = MFcrypt `{r=r,N=N} P S
function
SCrypt
examples.MiniLock.prim
examples/MiniLock/prim/SCrypt.cry
[ "Salsa20", "PBKDF2" ]
[ ">=", "MFcrypt", "fin", "width" ]
null
59
69
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
katsPass = ~zero == [test == kat | (test,kat) <- kats ]
katsPass = ~zero == [test == kat | (test,kat) <- kats ]
property
katsPass
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[ "==", "kats" ]
null
109
109
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
Ch : [32] -> [32] -> [32] -> [32] Ch x y z = (x && y) ^ (~x && z)
Ch : [32] -> [32] -> [32] -> [32]
Ch x y z = (x && y) ^ (~x && z)
function
Ch
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[ "&&" ]
null
20
20
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
Maj : [32] -> [32] -> [32] -> [32] Maj x y z = (x && y) ^ (x && z) ^ (y && z)
Maj : [32] -> [32] -> [32] -> [32]
Maj x y z = (x && y) ^ (x && z) ^ (y && z)
function
Maj
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[ "&&" ]
null
23
23
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
S0 : [32] -> [32] S0 x = (x >>> 2) ^ (x >>> 13) ^ (x >>> 22)
S0 : [32] -> [32]
S0 x = (x >>> 2) ^ (x >>> 13) ^ (x >>> 22)
function
S0
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[ ">>>" ]
null
26
26
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
S1 : [32] -> [32] S1 x = (x >>> 6) ^ (x >>> 11) ^ (x >>> 25)
S1 : [32] -> [32]
S1 x = (x >>> 6) ^ (x >>> 11) ^ (x >>> 25)
function
S1
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[ ">>>" ]
null
29
29
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
s0 : [32] -> [32] s0 x = (x >>> 7) ^ (x >>> 18) ^ (x >> 3)
s0 : [32] -> [32]
s0 x = (x >>> 7) ^ (x >>> 18) ^ (x >> 3)
function
s0
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[ ">>", ">>>" ]
null
32
32
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
s1 : [32] -> [32] s1 x = (x >>> 17) ^ (x >>> 19) ^ (x >> 10) /* * SHA256 Constants : Section 4.2.2 */
s1 : [32] -> [32]
s1 x = (x >>> 17) ^ (x >>> 19) ^ (x >> 10) /* * SHA256 Constants : Section 4.2.2 */
function
s1
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[ ">>", ">>>" ]
null
35
35
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
K : [64][32] K = [ 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174, 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da, ...
K : [64][32]
K = [ 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174, 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da, 0x983e51...
function
K
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[]
null
42
42
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
preprocess : {msgLen} ( fin msgLen , 64 >= width msgLen // message width fits in a word ) => [msgLen] -> [(msgLen + 65) /^ 512][512] preprocess msg = split (msg # [True] # (zero:[(msgLen + 65) %^ 512]) # (`msgLen:[64])) /* * SHA256 Initial Hash Value : Section 5.3.3 ...
preprocess : {msgLen} ( fin msgLen , 64 >= width msgLen // message width fits in a word ) => [msgLen] -> [(msgLen + 65) /^ 512][512]
preprocess msg = split (msg # [True] # (zero:[(msgLen + 65) %^ 512]) # (`msgLen:[64])) /* * SHA256 Initial Hash Value : Section 5.3.3 */
function
preprocess
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[ ">=", "fin", "split", "width" ]
null
56
60
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
H0 : [8][32] H0 = [ 0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19] /* * The SHA256 Hash computation : Section 6.2.2 * * We have split the computation into a message scheduling function, corresponding * to step 1 in the documents loop, and a compression functi...
H0 : [8][32]
H0 = [ 0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19] /* * The SHA256 Hash computation : Section 6.2.2 * * We have split the computation into a message scheduling function, corresponding * to step 1 in the documents loop, and a compression function, correspon...
function
H0
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[]
null
67
67
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
SHA256MessageSchedule : [16][32] -> [64][32] SHA256MessageSchedule M = W where W = M # [ s1 (W@(j-2)) + (W@(j-7)) + s0 (W@(j-15)) + (W@(j-16)) | j <- [16 .. 63]:[_][8] ]
SHA256MessageSchedule : [16][32] -> [64][32]
SHA256MessageSchedule M = W where W = M # [ s1 (W@(j-2)) + (W@(j-7)) + s0 (W@(j-15)) + (W@(j-16)) | j <- [16 .. 63]:[_][8] ]
function
SHA256MessageSchedule
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[ "s0", "s1" ]
null
78
78
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
SHA256Compress : [8][32] -> [64][32] -> [8][32] SHA256Compress H W = [as!0 + H@0, bs!0 + H@1, cs!0 + H@2, ds!0 + H@3, es!0 + H@4, fs!0 + H@5, gs!0 + H@6, hs!0 + H@7] where T1 = [h + S1 e + Ch e f g + k + w | h <- hs | e <- es | f <- fs | g <- gs | k <- K | w <- W] T2 = [S0 a + Maj a b c | a <- as | b <- bs |...
SHA256Compress : [8][32] -> [64][32] -> [8][32]
SHA256Compress H W = [as!0 + H@0, bs!0 + H@1, cs!0 + H@2, ds!0 + H@3, es!0 + H@4, fs!0 + H@5, gs!0 + H@6, hs!0 + H@7] where T1 = [h + S1 e + Ch e f g + k + w | h <- hs | e <- es | f <- fs | g <- gs | k <- K | w <- W] T2 = [S0 a + Maj a b c | a <- as | b <- bs | c <- cs] hs = take `{65} ([H@7] # gs) g...
function
SHA256Compress
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[ "Ch", "Maj", "S1", "t1", "t2", "take" ]
null
82
82
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
SHA256' : {a} (fin a) => [a][16][32] -> [8][32] SHA256' blocks = hash!0 where hash = [H0] # [SHA256Compress h (SHA256MessageSchedule b) | h <- hash | b <- blocks]
SHA256' : {a} (fin a) => [a][16][32] -> [8][32]
SHA256' blocks = hash!0 where hash = [H0] # [SHA256Compress h (SHA256MessageSchedule b) | h <- hash | b <- blocks]
function
SHA256'
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[ "SHA256MessageSchedule", "fin" ]
null
102
102
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
SHA256 : {a} (fin a, 64 >= width (8*a)) => [a][8] -> [256] SHA256 msg = join (SHA256' [ split x | x <- preprocess(join msg)])
SHA256 : {a} (fin a, 64 >= width (8*a)) => [a][8] -> [256]
SHA256 msg = join (SHA256' [ split x | x <- preprocess(join msg)])
function
SHA256
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[ ">=", "SHA256'", "fin", "join", "preprocess", "split", "width" ]
null
106
106
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
kats = [ (SHA256 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" , 0x248d6a61d20638b8e5c026930c3e6039a33ce45964ff2167f6ecedd419db06c1) , (SHA256 "" ,0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855) , (SHA256 "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmg...
kats = [ (SHA256 "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq" , 0x248d6a61d20638b8e5c026930c3e6039a33ce45964ff2167f6ecedd419db06c1) , (SHA256 "" ,0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855) , (SHA256 "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmg...
function
kats
examples.MiniLock.prim
examples/MiniLock/prim/SHA256.cry
[]
[ "SHA256" ]
null
111
119
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
pass = ~zero == [ hmacSHA256 [0x0b | _ <- [1..20] : [_][6]] "Hi There" == 0xb0344c61d8db38535ca8afceaf0bf12b881dc200c9833da726e9376c2e32cff7 , hmacSHA256 "Jefe" "what do ya want for nothing?" == 0x5bdcc146bf60754e6a042426089575c75a003f089d2739839dec58b964ec3843 ]
pass = ~zero == [ hmacSHA256 [0x0b | _ <- [1..20] : [_][6]] "Hi There" == 0xb0344c61d8db38535ca8afceaf0bf12b881dc200c9833da726e9376c2e32cff7 , hmacSHA256 "Jefe" "what do ya want for nothing?" == 0x5bdcc146bf60754e6a042426089575c75a003f089d2739839dec58b964ec3843 ]
property
pass
examples.MiniLock.prim
examples/MiniLock/prim/TestHMAC.cry
[ "HMAC", "SHA256" ]
[ "==", "hmacSHA256" ]
null
10
14
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
m : #
m : #
type
m
examples.param_modules
examples/param_modules/AES.cry
[ "AES::Algorithm", "AES::ExpandKey", "AES::TBox" ]
[]
null
5
5
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
k : #
k : #
type
k
examples.param_modules
examples/param_modules/AES.cry
[ "AES::Algorithm", "AES::ExpandKey", "AES::TBox" ]
[]
null
6
6
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
(k == 128 + m * 64, 2 >= m)
(k == 128 + m * 64, 2 >= m)
type constraint
examples.param_modules
examples/param_modules/AES.cry
[ "AES::Algorithm", "AES::ExpandKey", "AES::TBox" ]
[ "==", ">=" ]
null
7
7
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
EncKey = AES::KeySchedule
EncKey = AES::KeySchedule
type
EncKey
examples.param_modules
examples/param_modules/AES.cry
[ "AES::Algorithm", "AES::ExpandKey", "AES::TBox" ]
[]
null
22
22
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
DecKey = AES::KeySchedule
DecKey = AES::KeySchedule
type
DecKey
examples.param_modules
examples/param_modules/AES.cry
[ "AES::Algorithm", "AES::ExpandKey", "AES::TBox" ]
[]
null
23
23
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test k pt = decrypt k (encrypt k pt) == pt
test k pt = decrypt k (encrypt k pt) == pt
property
test
examples.param_modules
examples/param_modules/AES.cry
[ "AES::Algorithm", "AES::ExpandKey", "AES::TBox" ]
[ "==", "decrypt", "encrypt" ]
null
48
48
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
encrypt : [k] -> [128] -> [128] encrypt k = encryptWithSchedule (expandKeyEnc k)
encrypt : [k] -> [128] -> [128]
encrypt k = encryptWithSchedule (expandKeyEnc k)
function
encrypt
examples.param_modules
examples/param_modules/AES.cry
[ "AES::Algorithm", "AES::ExpandKey", "AES::TBox" ]
[ "encryptWithSchedule", "expandKeyEnc" ]
null
26
26
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
decrypt : [k] -> [128] -> [128] decrypt k = decryptWithSchedule (expandKeyDec k)
decrypt : [k] -> [128] -> [128]
decrypt k = decryptWithSchedule (expandKeyDec k)
function
decrypt
examples.param_modules
examples/param_modules/AES.cry
[ "AES::Algorithm", "AES::ExpandKey", "AES::TBox" ]
[ "decryptWithSchedule", "expandKeyDec" ]
null
29
29
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
expandKeyEnc : [k] -> EncKey expandKeyEnc = expandKey
expandKeyEnc : [k] -> EncKey
expandKeyEnc = expandKey
function
expandKeyEnc
examples.param_modules
examples/param_modules/AES.cry
[ "AES::Algorithm", "AES::ExpandKey", "AES::TBox" ]
[ "EncKey", "expandKey" ]
null
33
33
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
encryptWithSchedule : EncKey -> [128] -> [128] encryptWithSchedule = AES::encrypt
encryptWithSchedule : EncKey -> [128] -> [128]
encryptWithSchedule = AES::encrypt
function
encryptWithSchedule
examples.param_modules
examples/param_modules/AES.cry
[ "AES::Algorithm", "AES::ExpandKey", "AES::TBox" ]
[ "EncKey" ]
null
36
36
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
expandKeyDec : [k] -> EncKey expandKeyDec k = makeDecKey (expandKey k)
expandKeyDec : [k] -> EncKey
expandKeyDec k = makeDecKey (expandKey k)
function
expandKeyDec
examples.param_modules
examples/param_modules/AES.cry
[ "AES::Algorithm", "AES::ExpandKey", "AES::TBox" ]
[ "EncKey", "expandKey", "makeDecKey" ]
null
41
41
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
decryptWithSchedule : DecKey -> [128] -> [128] decryptWithSchedule = AES::decrypt
decryptWithSchedule : DecKey -> [128] -> [128]
decryptWithSchedule = AES::decrypt
function
decryptWithSchedule
examples.param_modules
examples/param_modules/AES.cry
[ "AES::Algorithm", "AES::ExpandKey", "AES::TBox" ]
[ "DecKey" ]
null
44
44
true
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test0 = AES_GCM_SIV_0_56::aes_gcm_siv { key = 0xee8e1ed9ff2540ae8f2ba9f50bc2f27c , nonce = 0x752abad3e0afb5f434dc4310 , aad = join "example" , msg = join "Hello world" } == 0x5d349ead175ef6b1def6fd # 0x4fbcdeb7e4793f4a1d7e4faa70100af1
test0 = AES_GCM_SIV_0_56::aes_gcm_siv { key = 0xee8e1ed9ff2540ae8f2ba9f50bc2f27c , nonce = 0x752abad3e0afb5f434dc4310 , aad = join "example" , msg = join "Hello world" } == 0x5d349ead175ef6b1def6fd # 0x4fbcdeb7e4793f4a1d7e4faa70100af1
property
test0
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==", "join" ]
null
6
15
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test1 = AES_GCM_SIV_0_0::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = [] , msg = [] } == 0xdc20e2d83f25705bb49e439eca56de25
test1 = AES_GCM_SIV_0_0::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = [] , msg = [] } == 0xdc20e2d83f25705bb49e439eca56de25
property
test1
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
22
30
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test2 = AES_GCM_SIV_0_0::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = [] , msg = 0x0100000000000000 } == 0xb5d839330ac7b786578782fff6013b81 # 0x5b287c22493a364c
test2 = AES_GCM_SIV_0_0::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = [] , msg = 0x0100000000000000 } == 0xb5d839330ac7b786578782fff6013b81 # 0x5b287c22493a364c
property
test2
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
32
41
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test3 = AES_GCM_SIV_0_0::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = [] , msg = 0x010000000000000000000000 } == 0x7323ea61d05932260047d942a4978db3 # 0x57391a0bc4fdec8b0d106639
test3 = AES_GCM_SIV_0_0::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = [] , msg = 0x010000000000000000000000 } == 0x7323ea61d05932260047d942a4978db3 # 0x57391a0bc4fdec8b0d106639
property
test3
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
43
52
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test4 = AES_GCM_SIV_0_0::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = [] , msg = 0x01000000000000000000000000000000 } == 0x743f7c8077ab25f8624e2e948579cf77 # 0x303aaf90f6fe21199c6068577437a0c4
test4 = AES_GCM_SIV_0_0::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = [] , msg = 0x01000000000000000000000000000000 } == 0x743f7c8077ab25f8624e2e948579cf77 # 0x303aaf90f6fe21199c6068577437a0c4
property
test4
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
54
63
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test5 = AES_GCM_SIV_0_0::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = [] , msg = 0x01000000000000000000000000000000 # 0x02000000000000000000000000000000 } == 0x84e07e62ba83a6585417245d7ec413a9 # 0xfe427d6315c09b57ce45...
test5 = AES_GCM_SIV_0_0::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = [] , msg = 0x01000000000000000000000000000000 # 0x02000000000000000000000000000000 } == 0x84e07e62ba83a6585417245d7ec413a9 # 0xfe427d6315c09b57ce45...
property
test5
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
65
76
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test6 = AES_GCM_SIV_0_0::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = [] , msg = 0x01000000000000000000000000000000 # 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 } == 0x3fd24ce1...
test6 = AES_GCM_SIV_0_0::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = [] , msg = 0x01000000000000000000000000000000 # 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 } == 0x3fd24ce1...
property
test6
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
78
91
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test7 = AES_GCM_SIV_0_0::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = [] , msg = 0x01000000000000000000000000000000 # 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 # 0x04000...
test7 = AES_GCM_SIV_0_0::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = [] , msg = 0x01000000000000000000000000000000 # 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 # 0x04000...
property
test7
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
93
108
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test8 = AES_GCM_SIV_0_8::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = 0x01 , msg = 0x0200000000000000 } == 0x1e6daba35669f4273b0a1a2560969cdf # 0x790d99759abd1508
test8 = AES_GCM_SIV_0_8::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = 0x01 , msg = 0x0200000000000000 } == 0x1e6daba35669f4273b0a1a2560969cdf # 0x790d99759abd1508
property
test8
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
115
124
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test9 = AES_GCM_SIV_0_8::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = 0x01 , msg = 0x020000000000000000000000 } == 0x296c7889fd99f41917f4462008299c51 # 0x02745aaa3a0c469fad9e075a
test9 = AES_GCM_SIV_0_8::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = 0x01 , msg = 0x020000000000000000000000 } == 0x296c7889fd99f41917f4462008299c51 # 0x02745aaa3a0c469fad9e075a
property
test9
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
126
135
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test10 = AES_GCM_SIV_0_8::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = 0x01 , msg = 0x02000000000000000000000000000000 } == 0xe2b0c5da79a901c1745f700525cb335b # 0x8f8936ec039e4e4bb97ebd8c4457441f
test10 = AES_GCM_SIV_0_8::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = 0x01 , msg = 0x02000000000000000000000000000000 } == 0xe2b0c5da79a901c1745f700525cb335b # 0x8f8936ec039e4e4bb97ebd8c4457441f
property
test10
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
137
146
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test11 = AES_GCM_SIV_0_8::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = 0x01 , msg = 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 } == 0x620048ef3c1e73e57e02bb8562c416a3 # 0x19e73e4caac8e96a1...
test11 = AES_GCM_SIV_0_8::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = 0x01 , msg = 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 } == 0x620048ef3c1e73e57e02bb8562c416a3 # 0x19e73e4caac8e96a1...
property
test11
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
148
159
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test12 = AES_GCM_SIV_0_8::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = 0x01 , msg = 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 # 0x04000000000000000000000000000000 } == 0x50c83...
test12 = AES_GCM_SIV_0_8::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = 0x01 , msg = 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 # 0x04000000000000000000000000000000 } == 0x50c83...
property
test12
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
161
174
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test13 = AES_GCM_SIV_0_8::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = 0x01 , msg = 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 # 0x04000000000000000000000000000000 # 0x05...
test13 = AES_GCM_SIV_0_8::aes_gcm_siv { key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 , aad = 0x01 , msg = 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 # 0x04000000000000000000000000000000 # 0x05...
property
test13
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
176
191
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test14 = AES_GCM_SIV_0_96::aes_gcm_siv { msg = 0x02000000 , aad = 0x010000000000000000000000 , key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0xa8fe3e8707eb1f84fb28f8cb73de8e99 # 0xe2f48a14
test14 = AES_GCM_SIV_0_96::aes_gcm_siv { msg = 0x02000000 , aad = 0x010000000000000000000000 , key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0xa8fe3e8707eb1f84fb28f8cb73de8e99 # 0xe2f48a14
property
test14
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
198
207
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test15 = AES_GCM_SIV_0_144::aes_gcm_siv { msg = 0x03000000000000000000000000000000 # 0x04000000 , aad = 0x01000000000000000000000000000000 # 0x0200 , key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x6bb0fecf5ded9b77f902c7d5da236a43 # ...
test15 = AES_GCM_SIV_0_144::aes_gcm_siv { msg = 0x03000000000000000000000000000000 # 0x04000000 , aad = 0x01000000000000000000000000000000 # 0x0200 , key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x6bb0fecf5ded9b77f902c7d5da236a43 # ...
property
test15
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
214
226
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test16 = AES_GCM_SIV_0_160::aes_gcm_siv { msg = 0x03000000000000000000000000000000 # 0x0400 , aad = 0x01000000000000000000000000000000 # 0x02000000 , key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x44d0aaf6fb2f1f34add5e8064...
test16 = AES_GCM_SIV_0_160::aes_gcm_siv { msg = 0x03000000000000000000000000000000 # 0x0400 , aad = 0x01000000000000000000000000000000 # 0x02000000 , key = 0x01000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x44d0aaf6fb2f1f34add5e8064...
property
test16
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
233
245
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test16' = AES_GCM_SIV_0_0::aes_gcm_siv { msg = [] , aad = [] , key = 0xe66021d5eb8e4f4066d4adb9c33560e4 , nonce = 0xf46e44bb3da0015c94f70887 } == 0xa4194b79071b01a87d65f706e3949578
test16' = AES_GCM_SIV_0_0::aes_gcm_siv { msg = [] , aad = [] , key = 0xe66021d5eb8e4f4066d4adb9c33560e4 , nonce = 0xf46e44bb3da0015c94f70887 } == 0xa4194b79071b01a87d65f706e3949578
property
test16'
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
248
255
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test17 = AES_GCM_SIV_0_40::aes_gcm_siv { msg = 0x7a806c , aad = 0x46bb91c3c5 , key = 0x36864200e0eaf5284d884a0e77d31646 , nonce = 0xbae8e37fc83441b16034566b } == 0xaf60eb711bd85bc1e4d3e0a462e074ee # 0xa428a8
test17 = AES_GCM_SIV_0_40::aes_gcm_siv { msg = 0x7a806c , aad = 0x46bb91c3c5 , key = 0x36864200e0eaf5284d884a0e77d31646 , nonce = 0xbae8e37fc83441b16034566b } == 0xaf60eb711bd85bc1e4d3e0a462e074ee # 0xa428a8
property
test17
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
262
270
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test18 = AES_GCM_SIV_0_80::aes_gcm_siv { msg = 0xbdc66f146545 , aad = 0xfc880c94a95198874296 , key = 0xaedb64a6c590bc84d1a5e269e4b47801 , nonce = 0xafc0577e34699b9e671fdd4f } == 0xbb93a3e34d3cd6a9c45545cfc11f03ad # 0x743dba20f966
test18 = AES_GCM_SIV_0_80::aes_gcm_siv { msg = 0xbdc66f146545 , aad = 0xfc880c94a95198874296 , key = 0xaedb64a6c590bc84d1a5e269e4b47801 , nonce = 0xafc0577e34699b9e671fdd4f } == 0xbb93a3e34d3cd6a9c45545cfc11f03ad # 0x743dba20f966
property
test18
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
277
285
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test19 = AES_GCM_SIV_0_120::aes_gcm_siv { msg = 0x1177441f195495860f , aad = 0x046787f3ea22c127aaf195d1894728 , key = 0xd5cc1fd161320b6920ce07787f86743b , nonce = 0x275d1ab32f6d1f0434d8848c } == 0x4f37281f7ad12949d01d02fd0cd174c8 # 0x4fc5dae2f60f52fd2b
test19 = AES_GCM_SIV_0_120::aes_gcm_siv { msg = 0x1177441f195495860f , aad = 0x046787f3ea22c127aaf195d1894728 , key = 0xd5cc1fd161320b6920ce07787f86743b , nonce = 0x275d1ab32f6d1f0434d8848c } == 0x4f37281f7ad12949d01d02fd0cd174c8 # 0x4fc5dae2f60f52fd2b
property
test19
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
292
300
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test20 = AES_GCM_SIV_0_160::aes_gcm_siv { msg = 0x9f572c614b4745914474e7c7 , aad = 0xc9882e5386fd9f92ec489c8fde2be2cf # 0x97e74e93 , key = 0xb3fed1473c528b8426a582995929a149 , nonce = 0x9e9ad8780c8d63d0ab4149c0 } == 0xf54673c5ddf710c745641c8bc1dc2f87 # 0x1fb7561da1286e655e24b7b0
test20 = AES_GCM_SIV_0_160::aes_gcm_siv { msg = 0x9f572c614b4745914474e7c7 , aad = 0xc9882e5386fd9f92ec489c8fde2be2cf # 0x97e74e93 , key = 0xb3fed1473c528b8426a582995929a149 , nonce = 0x9e9ad8780c8d63d0ab4149c0 } == 0xf54673c5ddf710c745641c8bc1dc2f87 # 0x1fb7561da1286e655e24b7b0
property
test20
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
303
312
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test21 = AES_GCM_SIV_0_200::aes_gcm_siv { msg = 0x0d8c8451178082355c9e940fea2f58 , aad = 0x2950a70d5a1db2316fd568378da107b5 # 0x2b0da55210cc1c1b0a , key = 0x2d4ed87da44102952ef94b02b805249b , nonce = 0xac80e6f61455bfac8308a2d4 } == 0xc9ff545e07b88a015f05b274540aa183 # 0xb3449b9...
test21 = AES_GCM_SIV_0_200::aes_gcm_siv { msg = 0x0d8c8451178082355c9e940fea2f58 , aad = 0x2950a70d5a1db2316fd568378da107b5 # 0x2b0da55210cc1c1b0a , key = 0x2d4ed87da44102952ef94b02b805249b , nonce = 0xac80e6f61455bfac8308a2d4 } == 0xc9ff545e07b88a015f05b274540aa183 # 0xb3449b9...
property
test21
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
319
328
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test22 = AES_GCM_SIV_0_240::aes_gcm_siv { msg = 0x6b3db4da3d57aa94842b9803a96e07fb # 0x6de7 , aad = 0x1860f762ebfbd08284e421702de0de18 # 0xbaa9c9596291b08466f37de21c7f , key = 0xbde3b2f204d1e9f8b06bc47f9745b3d1 , nonce = 0xae06556fb6aa7890bebc18fe } == 0x6298b296e24e8cc35dce0be...
test22 = AES_GCM_SIV_0_240::aes_gcm_siv { msg = 0x6b3db4da3d57aa94842b9803a96e07fb # 0x6de7 , aad = 0x1860f762ebfbd08284e421702de0de18 # 0xbaa9c9596291b08466f37de21c7f , key = 0xbde3b2f204d1e9f8b06bc47f9745b3d1 , nonce = 0xae06556fb6aa7890bebc18fe } == 0x6298b296e24e8cc35dce0be...
property
test22
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
335
346
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test23 = AES_GCM_SIV_0_280::aes_gcm_siv { msg = 0xe42a3c02c25b64869e146d7b233987bd # 0xdfc240871d , aad = 0x7576f7028ec6eb5ea7e298342a94d4b2 # 0x02b370ef9768ec6561c4fe6b7e7296fa # 0x859c21 , key = 0xf901cfe8a69615a93fdf7a98cad48179 , nonce = 0x6245709fb18853f68d833640 }...
test23 = AES_GCM_SIV_0_280::aes_gcm_siv { msg = 0xe42a3c02c25b64869e146d7b233987bd # 0xdfc240871d , aad = 0x7576f7028ec6eb5ea7e298342a94d4b2 # 0x02b370ef9768ec6561c4fe6b7e7296fa # 0x859c21 , key = 0xf901cfe8a69615a93fdf7a98cad48179 , nonce = 0x6245709fb18853f68d833640 }...
property
test23
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
353
365
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test24 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = [] , aad = [] , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x07f5f4169bbf55a8400cd47ea6fd400f
test24 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = [] , aad = [] , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x07f5f4169bbf55a8400cd47ea6fd400f
property
test24
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
372
380
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test25 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0x0100000000000000 , aad = [] , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0xc2ef328e5c71c83b843122130f7364b7 # 0x61e0b97427e3df28
test25 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0x0100000000000000 , aad = [] , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0xc2ef328e5c71c83b843122130f7364b7 # 0x61e0b97427e3df28
property
test25
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
382
391
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test26 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0x010000000000000000000000 , aad = [] , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x9aab2aeb3faa0a34aea8e2b18ca50da9 # 0xae6559e48fd10f6e5c9ca17e
test26 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0x010000000000000000000000 , aad = [] , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x9aab2aeb3faa0a34aea8e2b18ca50da9 # 0xae6559e48fd10f6e5c9ca17e
property
test26
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
393
402
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test27 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0x01000000000000000000000000000000 , aad = [] , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x85a01b63025ba19b7fd3ddfc033b3e76 # 0xc9eac6fa700942702e90862383c6c3...
test27 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0x01000000000000000000000000000000 , aad = [] , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x85a01b63025ba19b7fd3ddfc033b3e76 # 0xc9eac6fa700942702e90862383c6c3...
property
test27
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
404
413
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test28 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0x01000000000000000000000000000000 # 0x02000000000000000000000000000000 , aad = [] , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x4a6a9db4c8c6549201b9edb53...
test28 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0x01000000000000000000000000000000 # 0x02000000000000000000000000000000 , aad = [] , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x4a6a9db4c8c6549201b9edb53...
property
test28
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
415
426
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test29 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0x01000000000000000000000000000000 # 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 , aad = [] , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000...
test29 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0x01000000000000000000000000000000 # 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 , aad = [] , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000...
property
test29
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
428
442
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test30 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0x01000000000000000000000000000000 # 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 # 0x04000000000000000000000000000000 , aad = [] , key = 0x01000000000000000000000000000000 # 0x000000000000000...
test30 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0x01000000000000000000000000000000 # 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 # 0x04000000000000000000000000000000 , aad = [] , key = 0x01000000000000000000000000000000 # 0x000000000000000...
property
test30
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
444
459
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test31 = AES_GCM_SIV_1_8::aes_gcm_siv { msg = 0x0200000000000000 , aad = 0x01 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x1de22967237a813291213f267e3b452f # 0x02d01ae33e4ec854
test31 = AES_GCM_SIV_1_8::aes_gcm_siv { msg = 0x0200000000000000 , aad = 0x01 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x1de22967237a813291213f267e3b452f # 0x02d01ae33e4ec854
property
test31
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
466
475
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test32 = AES_GCM_SIV_1_8::aes_gcm_siv { msg = 0x020000000000000000000000 , aad = 0x01 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x163d6f9cc1b346cd453a2e4cc1a4a19a # 0xe800941ccdc57cc8413c277f
test32 = AES_GCM_SIV_1_8::aes_gcm_siv { msg = 0x020000000000000000000000 , aad = 0x01 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x163d6f9cc1b346cd453a2e4cc1a4a19a # 0xe800941ccdc57cc8413c277f
property
test32
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
477
486
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test33 = AES_GCM_SIV_1_8::aes_gcm_siv { msg = 0x02000000000000000000000000000000 , aad = 0x01 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0xc91545823cc24f17dbb0e9e807d5ec17 # 0xb292d28ff61189e8e49f3875ef91...
test33 = AES_GCM_SIV_1_8::aes_gcm_siv { msg = 0x02000000000000000000000000000000 , aad = 0x01 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0xc91545823cc24f17dbb0e9e807d5ec17 # 0xb292d28ff61189e8e49f3875ef91...
property
test33
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
488
497
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test34 = AES_GCM_SIV_1_8::aes_gcm_siv { msg = 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 , aad = 0x01 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x07dad364bfc2b9da89116d7...
test34 = AES_GCM_SIV_1_8::aes_gcm_siv { msg = 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 , aad = 0x01 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x07dad364bfc2b9da89116d7...
property
test34
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
499
510
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test35 = AES_GCM_SIV_1_8::aes_gcm_siv { msg = 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 # 0x04000000000000000000000000000000 , aad = 0x01 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x0300000000000...
test35 = AES_GCM_SIV_1_8::aes_gcm_siv { msg = 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 # 0x04000000000000000000000000000000 , aad = 0x01 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x0300000000000...
property
test35
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
512
525
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test36 = AES_GCM_SIV_1_8::aes_gcm_siv { msg = 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 # 0x04000000000000000000000000000000 # 0x05000000000000000000000000000000 , aad = 0x01 , key = 0x01000000000000000000000000000000 # 0x0000000000000...
test36 = AES_GCM_SIV_1_8::aes_gcm_siv { msg = 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 # 0x04000000000000000000000000000000 # 0x05000000000000000000000000000000 , aad = 0x01 , key = 0x01000000000000000000000000000000 # 0x0000000000000...
property
test36
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
527
542
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test37 = AES_GCM_SIV_1_96::aes_gcm_siv { msg = 0x02000000 , aad = 0x010000000000000000000000 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x22b3f4cd1835e517741dfddccfa07fa4 # 0x661b74cf
test37 = AES_GCM_SIV_1_96::aes_gcm_siv { msg = 0x02000000 , aad = 0x010000000000000000000000 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } == 0x22b3f4cd1835e517741dfddccfa07fa4 # 0x661b74cf
property
test37
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
549
558
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test38 = AES_GCM_SIV_1_144::aes_gcm_siv { msg = 0x03000000000000000000000000000000 # 0x04000000 , aad = 0x01000000000000000000000000000000 # 0x0200 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } ...
test38 = AES_GCM_SIV_1_144::aes_gcm_siv { msg = 0x03000000000000000000000000000000 # 0x04000000 , aad = 0x01000000000000000000000000000000 # 0x0200 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } ...
property
test38
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
565
577
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test39 = AES_GCM_SIV_1_160::aes_gcm_siv { msg = 0x03000000000000000000000000000000 # 0x0400 , aad = 0x01000000000000000000000000000000 # 0x02000000 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } ...
test39 = AES_GCM_SIV_1_160::aes_gcm_siv { msg = 0x03000000000000000000000000000000 # 0x0400 , aad = 0x01000000000000000000000000000000 # 0x02000000 , key = 0x01000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x030000000000000000000000 } ...
property
test39
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
584
596
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test40 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = [] , aad = [] , key = 0xe66021d5eb8e4f4066d4adb9c33560e4 # 0xf46e44bb3da0015c94f7088736864200 , nonce = 0xe0eaf5284d884a0e77d31646 } == 0x169fbb2fbf389a995f6390af22228a62
test40 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = [] , aad = [] , key = 0xe66021d5eb8e4f4066d4adb9c33560e4 # 0xf46e44bb3da0015c94f7088736864200 , nonce = 0xe0eaf5284d884a0e77d31646 } == 0x169fbb2fbf389a995f6390af22228a62
property
test40
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
599
607
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test41 = AES_GCM_SIV_1_40::aes_gcm_siv { msg = 0x671fdd , aad = 0x4fbdc66f14 , key = 0xbae8e37fc83441b16034566b7a806c46 # 0xbb91c3c5aedb64a6c590bc84d1a5e269 , nonce = 0xe4b47801afc0577e34699b9e } == 0x0eaccb93da9bb81333aee0c785b240d3 # 0x19719d
test41 = AES_GCM_SIV_1_40::aes_gcm_siv { msg = 0x671fdd , aad = 0x4fbdc66f14 , key = 0xbae8e37fc83441b16034566b7a806c46 # 0xbb91c3c5aedb64a6c590bc84d1a5e269 , nonce = 0xe4b47801afc0577e34699b9e } == 0x0eaccb93da9bb81333aee0c785b240d3 # 0x19719d
property
test41
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
614
623
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test42 = AES_GCM_SIV_1_80::aes_gcm_siv { msg = 0x195495860f04 , aad = 0x6787f3ea22c127aaf195 , key = 0x6545fc880c94a95198874296d5cc1fd1 # 0x61320b6920ce07787f86743b275d1ab3 , nonce = 0x2f6d1f0434d8848c1177441f } == 0xa254dad4f3f96b62b84dc40c84636a5e # 0xc12020ec8c2c
test42 = AES_GCM_SIV_1_80::aes_gcm_siv { msg = 0x195495860f04 , aad = 0x6787f3ea22c127aaf195 , key = 0x6545fc880c94a95198874296d5cc1fd1 # 0x61320b6920ce07787f86743b275d1ab3 , nonce = 0x2f6d1f0434d8848c1177441f } == 0xa254dad4f3f96b62b84dc40c84636a5e # 0xc12020ec8c2c
property
test42
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
630
639
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test43 = AES_GCM_SIV_1_120::aes_gcm_siv { msg = 0xc9882e5386fd9f92ec , aad = 0x489c8fde2be2cf97e74e932d4ed87d , key = 0xd1894728b3fed1473c528b8426a58299 # 0x5929a1499e9ad8780c8d63d0ab4149c0 , nonce = 0x9f572c614b4745914474e7c7 } == 0x0df9e308678244c44bc0fd3dc6628dfe # 0x55ebb0b9fb22...
test43 = AES_GCM_SIV_1_120::aes_gcm_siv { msg = 0xc9882e5386fd9f92ec , aad = 0x489c8fde2be2cf97e74e932d4ed87d , key = 0xd1894728b3fed1473c528b8426a58299 # 0x5929a1499e9ad8780c8d63d0ab4149c0 , nonce = 0x9f572c614b4745914474e7c7 } == 0x0df9e308678244c44bc0fd3dc6628dfe # 0x55ebb0b9fb22...
property
test43
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
646
655
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test44 = AES_GCM_SIV_1_160::aes_gcm_siv { msg = 0x1db2316fd568378da107b52b , aad = 0x0da55210cc1c1b0abde3b2f204d1e9f8 # 0xb06bc47f , key = 0xa44102952ef94b02b805249bac80e6f6 # 0x1455bfac8308a2d40d8c845117808235 , nonce = 0x5c9e940fea2f582950a70d5a } == 0x8dbeb9f7255bf5769dd5669...
test44 = AES_GCM_SIV_1_160::aes_gcm_siv { msg = 0x1db2316fd568378da107b52b , aad = 0x0da55210cc1c1b0abde3b2f204d1e9f8 # 0xb06bc47f , key = 0xa44102952ef94b02b805249bac80e6f6 # 0x1455bfac8308a2d40d8c845117808235 , nonce = 0x5c9e940fea2f582950a70d5a } == 0x8dbeb9f7255bf5769dd5669...
property
test44
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
658
668
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test45 = AES_GCM_SIV_1_200::aes_gcm_siv { msg = 0x21702de0de18baa9c9596291b08466 , aad = 0xf37de21c7ff901cfe8a69615a93fdf7a # 0x98cad481796245709f , key = 0x9745b3d1ae06556fb6aa7890bebc18fe # 0x6b3db4da3d57aa94842b9803a96e07fb , nonce = 0x6de71860f762ebfbd08284e4 } == 0x793576d...
test45 = AES_GCM_SIV_1_200::aes_gcm_siv { msg = 0x21702de0de18baa9c9596291b08466 , aad = 0xf37de21c7ff901cfe8a69615a93fdf7a # 0x98cad481796245709f , key = 0x9745b3d1ae06556fb6aa7890bebc18fe # 0x6b3db4da3d57aa94842b9803a96e07fb , nonce = 0x6de71860f762ebfbd08284e4 } == 0x793576d...
property
test45
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
675
685
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test46 = AES_GCM_SIV_1_240::aes_gcm_siv { msg = 0xb202b370ef9768ec6561c4fe6b7e7296 # 0xfa85 , aad = 0x9c2159058b1f0fe91433a5bdc20e214e # 0xab7fecef4454a10ef0657df21ac7 , key = 0xb18853f68d833640e42a3c02c25b6486 # 0x9e146d7b233987bddfc240871d7576f7 , nonce = 0x028ec6eb5ea7e...
test46 = AES_GCM_SIV_1_240::aes_gcm_siv { msg = 0xb202b370ef9768ec6561c4fe6b7e7296 # 0xfa85 , aad = 0x9c2159058b1f0fe91433a5bdc20e214e # 0xab7fecef4454a10ef0657df21ac7 , key = 0xb18853f68d833640e42a3c02c25b6486 # 0x9e146d7b233987bddfc240871d7576f7 , nonce = 0x028ec6eb5ea7e...
property
test46
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
692
704
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test47 = AES_GCM_SIV_1_280::aes_gcm_siv { msg = 0xced532ce4159b035277d4dfbb7db6296 # 0x8b13cd4eec , aad = 0x734320ccc9d9bbbb19cb81b2af4ecbc3 # 0xe72834321f7aa0f70b7282b4f33df23f # 0x167541 , key = 0x3c535de192eaed3822a2fbbe2ca9dfc8 # 0x8255e14a661b8aa82cc54236093bb...
test47 = AES_GCM_SIV_1_280::aes_gcm_siv { msg = 0xced532ce4159b035277d4dfbb7db6296 # 0x8b13cd4eec , aad = 0x734320ccc9d9bbbb19cb81b2af4ecbc3 # 0xe72834321f7aa0f70b7282b4f33df23f # 0x167541 , key = 0x3c535de192eaed3822a2fbbe2ca9dfc8 # 0x8255e14a661b8aa82cc54236093bb...
property
test47
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
711
724
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test48 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0x00000000000000000000000000000000 # 0x4db923dc793ee6497c76dcc03a98e108 , aad = [] , key = 0x00000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x000000000000000000000000 } == 0xf3f80f2cf0cb2dd9c5984fcda...
test48 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0x00000000000000000000000000000000 # 0x4db923dc793ee6497c76dcc03a98e108 , aad = [] , key = 0x00000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x000000000000000000000000 } == 0xf3f80f2cf0cb2dd9c5984fcda...
property
test48
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
727
738
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test49 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0xeb3640277c7ffd1303c7a542d02d3e4c # 0x0000000000000000 , aad = [] , key = 0x00000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x000000000000000000000000 } == 0x18ce4f0b8cb4d0cac65fea8f79257b20 # ...
test49 = AES_GCM_SIV_1_0::aes_gcm_siv { msg = 0xeb3640277c7ffd1303c7a542d02d3e4c # 0x0000000000000000 , aad = [] , key = 0x00000000000000000000000000000000 # 0x00000000000000000000000000000000 , nonce = 0x000000000000000000000000 } == 0x18ce4f0b8cb4d0cac65fea8f79257b20 # ...
property
test49
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[ "==" ]
null
740
751
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test50 = AES_GCM_SIV_0_0::aes_gcm_siv { msg = 0x01000000000000000000000000000000 # 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 # 0x04000000000000000000000000000000 # 0x05000000000000000000000000000000 # 0x060000000000000000000...
test50 = AES_GCM_SIV_0_0::aes_gcm_siv { msg = 0x01000000000000000000000000000000 # 0x02000000000000000000000000000000 # 0x03000000000000000000000000000000 # 0x04000000000000000000000000000000 # 0x05000000000000000000000000000000 # 0x060000000000000000000...
property
test50
examples.param_modules
examples/param_modules/AES_GCM_SIV_Test.cry
[ "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM_SIV", "Common::AES_GCM...
[]
null
755
776
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test1 = GCM_128_96_0_128::encrypt { key = 0x00000000000000000000000000000000 , pt = [] , iv = 0x000000000000000000000000 , aad = [] } == { ct = [] , tag = 0x58e2fccefa7e3061367f1d57a4e7455a }
test1 = GCM_128_96_0_128::encrypt { key = 0x00000000000000000000000000000000 , pt = [] , iv = 0x000000000000000000000000 , aad = [] } == { ct = [] , tag = 0x58e2fccefa7e3061367f1d57a4e7455a }
property
test1
examples.param_modules
examples/param_modules/GCM_AES_Tests.cry
[ "AES", "AES", "AES", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM" ]
[ "==" ]
null
23
33
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test2 = GCM_128_96_0_128::encrypt { key = 0x00000000000000000000000000000000 , pt = 0x00000000000000000000000000000000 , iv = 0x000000000000000000000000 , aad = [] } == { ct = 0x0388dace60b6a392f328c2b971b2fe78 , tag = 0xab6e47d42cec13bdf53a67b21257bddf }
test2 = GCM_128_96_0_128::encrypt { key = 0x00000000000000000000000000000000 , pt = 0x00000000000000000000000000000000 , iv = 0x000000000000000000000000 , aad = [] } == { ct = 0x0388dace60b6a392f328c2b971b2fe78 , tag = 0xab6e47d42cec13bdf53a67b21257bddf }
property
test2
examples.param_modules
examples/param_modules/GCM_AES_Tests.cry
[ "AES", "AES", "AES", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM" ]
[ "==" ]
null
35
45
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test3 = GCM_128_96_0_128::encrypt { key = 0xfeffe9928665731c6d6a8f9467308308 , pt = 0xd9313225f88406e5a55909c5aff5269a # 0x86a7a9531534f7da2e4c303d8a318a72 # 0x1c3c0c95956809532fcf0e2449a6b525 # 0xb16aedf5aa0de657ba637b391aafd255 , iv = 0xcafebabefacedbaddecaf888 ,...
test3 = GCM_128_96_0_128::encrypt { key = 0xfeffe9928665731c6d6a8f9467308308 , pt = 0xd9313225f88406e5a55909c5aff5269a # 0x86a7a9531534f7da2e4c303d8a318a72 # 0x1c3c0c95956809532fcf0e2449a6b525 # 0xb16aedf5aa0de657ba637b391aafd255 , iv = 0xcafebabefacedbaddecaf888 ,...
property
test3
examples.param_modules
examples/param_modules/GCM_AES_Tests.cry
[ "AES", "AES", "AES", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM" ]
[ "==" ]
null
47
63
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb
test4 = GCM_128_96_160_128::encrypt { key = 0xfeffe9928665731c6d6a8f9467308308 , pt = 0xd9313225f88406e5a55909c5aff5269a # 0x86a7a9531534f7da2e4c303d8a318a72 # 0x1c3c0c95956809532fcf0e2449a6b525 # 0xb16aedf5aa0de657ba637b39 , aad = 0xfeedfacedeadbeeffeedfacedeadbeef # ...
test4 = GCM_128_96_160_128::encrypt { key = 0xfeffe9928665731c6d6a8f9467308308 , pt = 0xd9313225f88406e5a55909c5aff5269a # 0x86a7a9531534f7da2e4c303d8a318a72 # 0x1c3c0c95956809532fcf0e2449a6b525 # 0xb16aedf5aa0de657ba637b39 , aad = 0xfeedfacedeadbeeffeedfacedeadbeef # ...
property
test4
examples.param_modules
examples/param_modules/GCM_AES_Tests.cry
[ "AES", "AES", "AES", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM", "Common::GCM" ]
[ "==" ]
null
73
90
false
https://github.com/GaloisInc/cryptol
a50cac6eb2c30a79503814f423f375f9476aaceb