crypto_kx(): abort if the function is called without any non-NULL pointer
This commit is contained in:
parent
90658321d3
commit
765ba55cdc
@ -47,6 +47,9 @@ crypto_kx_client_session_keys(unsigned char rx[crypto_kx_SESSIONKEYBYTES],
|
|||||||
if (tx == NULL) {
|
if (tx == NULL) {
|
||||||
tx = rx;
|
tx = rx;
|
||||||
}
|
}
|
||||||
|
if (rx == NULL) {
|
||||||
|
abort();
|
||||||
|
}
|
||||||
if (crypto_scalarmult(q, client_sk, server_pk) != 0) {
|
if (crypto_scalarmult(q, client_sk, server_pk) != 0) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user