diff options
author | tb <> | 2022-02-24 21:07:03 +0000 |
---|---|---|
committer | tb <> | 2022-02-24 21:07:03 +0000 |
commit | 0f5c4cf7cc56e3a4623fb0ca0dc51f0ea636ed81 (patch) | |
tree | 0254a05816cfcc4d7ed07df4decd93e4ceba4882 | |
parent | 9e79e924be0dc59fb8cf7fcea9b71cc4e1c740ce (diff) | |
download | openbsd-0f5c4cf7cc56e3a4623fb0ca0dc51f0ea636ed81.tar.gz openbsd-0f5c4cf7cc56e3a4623fb0ca0dc51f0ea636ed81.tar.bz2 openbsd-0f5c4cf7cc56e3a4623fb0ca0dc51f0ea636ed81.zip |
Remove accidentally committed debug code.
-rw-r--r-- | src/lib/libcrypto/dsa/dsa_ameth.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/dsa/dsa_ameth.c b/src/lib/libcrypto/dsa/dsa_ameth.c index eb4d5d2dcd..07773ad44f 100644 --- a/src/lib/libcrypto/dsa/dsa_ameth.c +++ b/src/lib/libcrypto/dsa/dsa_ameth.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dsa_ameth.c,v 1.33 2022/02/24 08:31:11 tb Exp $ */ | 1 | /* $OpenBSD: dsa_ameth.c,v 1.34 2022/02/24 21:07:03 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2006. | 3 | * project 2006. |
4 | */ | 4 | */ |
@@ -487,8 +487,6 @@ old_dsa_priv_decode(EVP_PKEY *pkey, const unsigned char **pder, int derlen) | |||
487 | return 0; | 487 | return 0; |
488 | } | 488 | } |
489 | 489 | ||
490 | DSA_print_fp(stdout, dsa, 0); | ||
491 | |||
492 | /* FIPS 186-3 allows only three different sizes for q. */ | 490 | /* FIPS 186-3 allows only three different sizes for q. */ |
493 | qbits = BN_num_bits(dsa->q); | 491 | qbits = BN_num_bits(dsa->q); |
494 | if (qbits != 160 && qbits != 224 && qbits != 256) { | 492 | if (qbits != 160 && qbits != 224 && qbits != 256) { |