Commit ed4f3426 authored by Pieter Hintjens's avatar Pieter Hintjens

Merge pull request #1252 from c-rack/master

Problem: return code of sodium_init() is not checked.
parents 6dc9db1e 479db211
...@@ -38,6 +38,7 @@ zmq::curve_client_t::curve_client_t (const options_t &options_) : ...@@ -38,6 +38,7 @@ zmq::curve_client_t::curve_client_t (const options_t &options_) :
cn_peer_nonce(1), cn_peer_nonce(1),
sync() sync()
{ {
int rc;
memcpy (public_key, options_.curve_public_key, crypto_box_PUBLICKEYBYTES); memcpy (public_key, options_.curve_public_key, crypto_box_PUBLICKEYBYTES);
memcpy (secret_key, options_.curve_secret_key, crypto_box_SECRETKEYBYTES); memcpy (secret_key, options_.curve_secret_key, crypto_box_SECRETKEYBYTES);
memcpy (server_key, options_.curve_server_key, crypto_box_PUBLICKEYBYTES); memcpy (server_key, options_.curve_server_key, crypto_box_PUBLICKEYBYTES);
...@@ -47,12 +48,12 @@ zmq::curve_client_t::curve_client_t (const options_t &options_) : ...@@ -47,12 +48,12 @@ zmq::curve_client_t::curve_client_t (const options_t &options_) :
unsigned char tmpbytes[4]; unsigned char tmpbytes[4];
randombytes(tmpbytes, 4); randombytes(tmpbytes, 4);
#else #else
// todo check return code rc = sodium_init ();
sodium_init(); zmq_assert (rc != -1);
#endif #endif
// Generate short-term key pair // Generate short-term key pair
const int rc = crypto_box_keypair (cn_public, cn_secret); rc = crypto_box_keypair (cn_public, cn_secret);
zmq_assert (rc == 0); zmq_assert (rc == 0);
} }
......
...@@ -42,6 +42,7 @@ zmq::curve_server_t::curve_server_t (session_base_t *session_, ...@@ -42,6 +42,7 @@ zmq::curve_server_t::curve_server_t (session_base_t *session_,
cn_peer_nonce(1), cn_peer_nonce(1),
sync() sync()
{ {
int rc;
// Fetch our secret key from socket options // Fetch our secret key from socket options
memcpy (secret_key, options_.curve_secret_key, crypto_box_SECRETKEYBYTES); memcpy (secret_key, options_.curve_secret_key, crypto_box_SECRETKEYBYTES);
scoped_lock_t lock (sync); scoped_lock_t lock (sync);
...@@ -50,12 +51,12 @@ zmq::curve_server_t::curve_server_t (session_base_t *session_, ...@@ -50,12 +51,12 @@ zmq::curve_server_t::curve_server_t (session_base_t *session_,
unsigned char tmpbytes[4]; unsigned char tmpbytes[4];
randombytes(tmpbytes, 4); randombytes(tmpbytes, 4);
#else #else
// todo check return code rc = sodium_init ();
sodium_init(); zmq_assert (rc != -1);
#endif #endif
// Generate short-term key pair // Generate short-term key pair
const int rc = crypto_box_keypair (cn_public, cn_secret); rc = crypto_box_keypair (cn_public, cn_secret);
zmq_assert (rc == 0); zmq_assert (rc == 0);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment