-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest-all.sh
executable file
·32 lines (28 loc) · 997 Bytes
/
test-all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
echo "======================================================"
echo "[ Reference implementation ]"
echo "======================================================"
./test.sh 2>err
echo
echo "======================================================"
echo "[ Side channel attack resistance implementation ]"
echo "======================================================"
cd side-channel-attack-resistance
./test.sh 2>>err
echo
echo "======================================================"
echo "[ Optimized (merged) implementation ]"
echo "======================================================"
cd ../optimized/merged
./test.sh 2>>err
echo
echo "======================================================"
echo "[ Optimized for min_rounds = 8, max_rounds = 32 ]"
echo "======================================================"
cd ../8-32
./test.sh 2>>err
echo
echo
echo "================= WARNINGS/ERRORS ===================="
cat err
echo
echo "======================================================"