aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2021-02-13 12:29:39 -0500
committerJack Lloyd <[email protected]>2021-02-13 12:29:39 -0500
commit6279be9bfcf6a31d7cd9083e7dd4d25040454285 (patch)
treec0691772f6870f04ea42999e702638e25ecb549c /src/scripts
parent3ef690022ad72357168c64ecf2e4c68e6b9fd9d7 (diff)
Fix cli crypt tests
Diffstat (limited to 'src/scripts')
-rwxr-xr-xsrc/scripts/test_cli_crypt.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scripts/test_cli_crypt.py b/src/scripts/test_cli_crypt.py
index eae77ceb2..e7b9437d6 100755
--- a/src/scripts/test_cli_crypt.py
+++ b/src/scripts/test_cli_crypt.py
@@ -104,7 +104,8 @@ def test_cipher_kat(cli_binary, data):
"cipher",
"--cipher=%s" % algorithm,
"--nonce=%s" % iv,
- "--key=%s" % key]
+ "--key=%s" % key,
+ "-"]
if 'AD' in data:
cmd += ['--ad=%s' % (data['AD'])]