diff options
author | Jack Lloyd <[email protected]> | 2018-07-04 10:42:27 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-07-04 10:42:27 -0400 |
commit | 131ede272c69f949a67f3a483afbd7c4a0104dc5 (patch) | |
tree | dc0afa933c7bf00e9653ad6950f04bc609d0f0f7 /src/scripts/test_cli.py | |
parent | a2ce8a8ebd5abc25b97a5bc7312c47fcceba9fd1 (diff) |
Need to bypass OpenSSL-based RSA keygen
Diffstat (limited to 'src/scripts/test_cli.py')
-rwxr-xr-x | src/scripts/test_cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/test_cli.py b/src/scripts/test_cli.py index 7f46c54fd..b91021823 100755 --- a/src/scripts/test_cli.py +++ b/src/scripts/test_cli.py @@ -432,7 +432,7 @@ def cli_pk_encrypt_tests(): rsa_priv_key = os.path.join(tmp_dir, 'rsa.priv') rsa_pub_key = os.path.join(tmp_dir, 'rsa.pub') - test_cli("keygen", ["--algo=RSA", "--params=2048", "--output=%s" % (rsa_priv_key)], "") + test_cli("keygen", ["--algo=RSA", "--provider=base", "--params=2048", "--output=%s" % (rsa_priv_key)], "") test_cli("pkcs8", ["--pub-out", "%s/rsa.priv" % (tmp_dir), "--output=%s" % (rsa_pub_key)], "") # Generate a random input file |