Remove hex encoding, just write binary files.

This commit is contained in:
Ian Gulliver
2015-02-05 17:18:44 +00:00
parent 18715be4b9
commit 524434813c
4 changed files with 3 additions and 19 deletions

View File

@@ -7,7 +7,6 @@ class CryptoBase {
CryptoBase(const int fd);
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);
virtual int OnReadable() = 0;