Public key generation
This commit is contained in:
19
crypto.cc
Normal file
19
crypto.cc
Normal file
@@ -0,0 +1,19 @@
|
||||
#include "crypto.h"
|
||||
|
||||
#include "nacl/build/instance1/include/amd64/crypto_box.h"
|
||||
|
||||
std::string CryptoBase::BinToHex(const std::string& bin) {
|
||||
static const char *hex = "0123456789ABCDEF";
|
||||
std::string ret;
|
||||
ret.reserve(bin.length() * 2);
|
||||
for (size_t i = 0; i < bin.length(); i++) {
|
||||
const char c = bin[i];
|
||||
ret.push_back(hex[(c & 0xf0) >> 4]);
|
||||
ret.push_back(hex[c & 0x0f]);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
void CryptoBase::GenKeyPair(std::string* sk, std::string* pk) {
|
||||
*pk = crypto_box_keypair(sk);
|
||||
}
|
||||
Reference in New Issue
Block a user