diff options
author | Brent Cook <busterb@gmail.com> | 2022-07-31 23:31:18 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2022-07-31 23:31:18 -0500 |
commit | cc613e785e9272db37991ec35785d78f50e0ca15 (patch) | |
tree | a96bc62fb8d595b5a40ea22b3f504ac180ed2a24 /tests/aeadtest.sh | |
parent | 5f5feb2bbc94a8cd8d101b6245c0d9b50f2a15ce (diff) | |
download | portable-cc613e785e9272db37991ec35785d78f50e0ca15.tar.gz portable-cc613e785e9272db37991ec35785d78f50e0ca15.tar.bz2 portable-cc613e785e9272db37991ec35785d78f50e0ca15.zip |
updates for new files and test cases
Diffstat (limited to 'tests/aeadtest.sh')
-rwxr-xr-x | tests/aeadtest.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/aeadtest.sh b/tests/aeadtest.sh index 132b1fd..9f59595 100755 --- a/tests/aeadtest.sh +++ b/tests/aeadtest.sh | |||
@@ -4,4 +4,10 @@ TEST=./aeadtest | |||
4 | if [ -e ./aeadtest.exe ]; then | 4 | if [ -e ./aeadtest.exe ]; then |
5 | TEST=./aeadtest.exe | 5 | TEST=./aeadtest.exe |
6 | fi | 6 | fi |
7 | $TEST $srcdir/aeadtests.txt | 7 | $TEST aead $srcdir/aeadtests.txt |
8 | $TEST aes-128-gcm $srcdir/aes_128_gcm_tests.txt | ||
9 | $TEST aes-192-gcm $srcdir/aes_192_gcm_tests.txt | ||
10 | $TEST aes-256-gcm $srcdir/aes_256_gcm_tests.txt | ||
11 | $TEST chacha20-poly1305 $srcdir/chacha20_poly1305_tests.txt | ||
12 | $TEST xchacha20-poly1305 $srcdir/xchacha20_poly1305_tests.txt | ||
13 | |||