diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-03-17 10:09:58 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-03-17 10:44:38 -0400 |
commit | f958b537abc1285dd627c03f091dc94a5d17995a (patch) | |
tree | b7116601afee1a99f7204d2320216ff8aa4de340 | |
parent | 2328c79a5fbc2f1995390dd08002244bc952246d (diff) | |
download | tor-f958b537abc1285dd627c03f091dc94a5d17995a.tar.gz tor-f958b537abc1285dd627c03f091dc94a5d17995a.zip |
Use >= consistently with max_bits.
-rw-r--r-- | src/lib/crypt_ops/crypto_rsa_nss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/crypt_ops/crypto_rsa_nss.c b/src/lib/crypt_ops/crypto_rsa_nss.c index 4cf6990670..7abf6716f0 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; |