Log client ID from server

This commit is contained in:
Ian Gulliver
2015-02-07 13:38:51 -08:00
parent 36bdebe5e0
commit cdd059370d
2 changed files with 14 additions and 1 deletions

View File

@@ -10,6 +10,8 @@ class CryptoBase {
public:
virtual ~CryptoBase() {};
static std::string BinToHex(const std::string& bin);
static void GenKey(std::string* key);
static void GenKeyPair(std::string* secret_key, std::string* public_key);
static void DerivePublicKey(const std::string& secret_key, std::string* public_key);