diff options
author | Jack Lloyd <[email protected]> | 2020-03-01 07:31:58 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2020-03-01 17:39:54 -0500 |
commit | 2bd07b94d00bde361163c05cd209214803863535 (patch) | |
tree | 84c42ea1b86b56ae96843b0252ae50c396a8a8ad /src/scripts/test_cli.py | |
parent | f34cfff2ec57c6a188e965107700f14350391fb6 (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-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 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') |