mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 22:58:50 +01:00
Use >= consistently with max_bits.
This commit is contained in:
parent
2328c79a5f
commit
f958b537ab
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue