[tor-commits] [tor/maint-0.4.2] Use >= consistently with max_bits.
nickm at torproject.org
nickm at torproject.org
Wed Mar 18 13:34:38 UTC 2020
commit f958b537abc1285dd627c03f091dc94a5d17995a
Author: Nick Mathewson <nickm at torproject.org>
Date: Tue Mar 17 10:09:58 2020 -0400
Use >= consistently with max_bits.
---
src/lib/crypt_ops/crypto_rsa_nss.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib/crypt_ops/crypto_rsa_nss.c b/src/lib/crypt_ops/crypto_rsa_nss.c
index 4cf699067..7abf6716f 100644
--- a/src/lib/crypt_ops/crypto_rsa_nss.c
+++ b/src/lib/crypt_ops/crypto_rsa_nss.c
@@ -736,7 +736,7 @@ crypto_pk_asn1_decode_private(const char *str, size_t len, int max_bits)
if (output) {
const int bits = SECKEY_PublicKeyStrengthInBits(output->pubkey);
- if (max_bits > 0 && bits > max_bits) {
+ if (max_bits >= 0 && bits > max_bits) {
log_info(LD_CRYPTO, "Private key longer than expected.");
crypto_pk_free(output);
output = NULL;
More information about the tor-commits
mailing list