Public key generation

This commit is contained in:
Ian Gulliver
2015-02-05 12:55:48 +00:00
parent 99aac0d648
commit d37b9a7e41
5 changed files with 72 additions and 35 deletions

7
crypto.h Normal file
View File

@@ -0,0 +1,7 @@
#include <string>
class CryptoBase {
public:
static std::string BinToHex(const std::string& bin);
static void GenKeyPair(std::string* sk, std::string* pk);
};