Merge pull request #4137

63e342b crypto: move null_pkey/null_skey to the cpp file (moneromooo-monero)
0496c7c crypto: do not use boost::value_initialized to init null skey/pkey (moneromooo-monero)
This commit is contained in:
luigi1111 2018-08-15 17:17:34 -05:00
commit 5295e4eb82
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
3 changed files with 13 additions and 3 deletions

View file

@ -70,6 +70,9 @@ namespace crypto {
#include "random.h"
}
const crypto::public_key null_pkey = crypto::public_key{};
const crypto::secret_key null_skey = crypto::secret_key{};
static inline unsigned char *operator &(ec_point &point) {
return &reinterpret_cast<unsigned char &>(point);
}