Remove useless warning about signature length being shorter than expected.
This commit is contained in:
parent
cb6cbf452f
commit
fba1c85f44
1 changed files with 0 additions and 4 deletions
|
@ -97,10 +97,6 @@ bool ecdsa_sign(ecdsa_t *ecdsa, const void *in, size_t len, void *sig) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(siglen != ECDSA_size(*ecdsa)) {
|
|
||||||
logger(LOG_ERR, "Signature length %d != %d", siglen, ECDSA_size(*ecdsa));
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue