Skip to content
Snippets Groups Projects
Commit f958b537 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Use >= consistently with max_bits.

parent 2328c79a
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment