diff options
Diffstat (limited to 'python/compare.sh')
| -rwxr-xr-x | python/compare.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/python/compare.sh b/python/compare.sh new file mode 100755 index 0000000..7a9cdc7 --- /dev/null +++ b/python/compare.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# TODO: make sure reference crypto_aead exists +# TODO: cleanup previous vectors and run genkat_aead.py + +set -eux + +mkdir -p crypto_aead_ref +for d in ../../SOUMISSION_NIST/REFERENCE_IMPLEMENTATION/crypto_aead/lilliputaei* +do + mkdir -p crypto_aead_ref/$(basename $d) + cp $d/LWC*.txt crypto_aead_ref/$(basename $d)/ +done + +diff -ru crypto_aead_ref crypto_aead |
