Files
funstraw/crypto.h

8 lines
165 B
C
Raw Normal View History

2015-02-05 12:55:48 +00:00
#include <string>
class CryptoBase {
public:
static std::string BinToHex(const std::string& bin);
static void GenKeyPair(std::string* sk, std::string* pk);
};