crypto: error out where appropriate
This commit is contained in:
parent
54f7429cf6
commit
e70e8a69f4
1 changed files with 2 additions and 2 deletions
|
@ -230,7 +230,7 @@ namespace crypto {
|
|||
buf.h = prefix_hash;
|
||||
buf.key = pub;
|
||||
if (ge_frombytes_vartime(&tmp3, &pub) != 0) {
|
||||
abort();
|
||||
return false;
|
||||
}
|
||||
if (sc_check(&sig.c) != 0 || sc_check(&sig.r) != 0) {
|
||||
return false;
|
||||
|
@ -364,7 +364,7 @@ POP_WARNINGS
|
|||
return false;
|
||||
}
|
||||
if (ge_frombytes_vartime(&tmp3, &*pubs[i]) != 0) {
|
||||
abort();
|
||||
return false;
|
||||
}
|
||||
ge_double_scalarmult_base_vartime(&tmp2, &sig[i].c, &tmp3, &sig[i].r);
|
||||
ge_tobytes(&buf->ab[i].a, &tmp2);
|
||||
|
|
Loading…
Reference in a new issue