cryptol/tests/regression/check13.cry

8 lines
178 B
Plaintext
Raw Normal View History

2014-04-18 02:34:25 +04:00
ick : [1][8] -> [8]
ick [x] = x
uck : [8][1] -> [8]
uck [a, b, c, d, e, f, g, h] = a # b # c # d # e # f # g # h
check13 = (ick (split 150) == 150) && (uck (split 150) == 150)