aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts/test_cli.py
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2020-03-01 07:31:58 -0500
committerJack Lloyd <[email protected]>2020-03-01 17:39:54 -0500
commit2bd07b94d00bde361163c05cd209214803863535 (patch)
tree84c42ea1b86b56ae96843b0252ae50c396a8a8ad /src/scripts/test_cli.py
parentf34cfff2ec57c6a188e965107700f14350391fb6 (diff)
Remove use of Binary Extended Euclidean Algorithm for inversion
Instead use two specialized algorithms, one for odd modulus and the other for power of 2 modulus, then combine the results using CRT.
Diffstat (limited to 'src/scripts/test_cli.py')
-rwxr-xr-xsrc/scripts/test_cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/test_cli.py b/src/scripts/test_cli.py
index de6d92255..cafab6a09 100755
--- a/src/scripts/test_cli.py
+++ b/src/scripts/test_cli.py
@@ -1133,7 +1133,7 @@ def cli_speed_pk_tests(_tmp_dir):
pk_algos = ["ECDSA", "ECDH", "SM2", "ECKCDSA", "ECGDSA", "GOST-34.10",
"DH", "DSA", "ElGamal", "Ed25519", "Curve25519", "NEWHOPE", "McEliece",
- "RSA", "XMSS"]
+ "RSA", "RSA_keygen", "XMSS"]
output = test_cli("speed", ["--msec=%d" % (msec)] + pk_algos, None).split('\n')