2015-02-17 00:23:33 +01:00
|
|
|
#include <cryptopp/cryptopp/hex.h>
|
|
|
|
#include <cryptopp/cryptopp/osrng.h>
|
|
|
|
#include <messmer/blockstore/utils/Key.h>
|
2014-12-09 20:36:32 +01:00
|
|
|
|
2015-02-17 00:23:33 +01:00
|
|
|
#include <cstring>
|
2014-12-09 20:36:32 +01:00
|
|
|
|
|
|
|
using CryptoPP::ArraySource;
|
|
|
|
using CryptoPP::ArraySink;
|
|
|
|
using CryptoPP::StringSink;
|
|
|
|
using CryptoPP::StringSource;
|
|
|
|
using CryptoPP::HexEncoder;
|
|
|
|
using CryptoPP::HexDecoder;
|
|
|
|
using CryptoPP::AutoSeededRandomPool;
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
namespace blockstore {
|
|
|
|
|
|
|
|
constexpr unsigned int Key::KEYLENGTH_BINARY;
|
|
|
|
constexpr unsigned int Key::KEYLENGTH_STRING;
|
|
|
|
|
|
|
|
Key::Key() {
|
|
|
|
}
|
|
|
|
|
|
|
|
Key::~Key() {
|
|
|
|
}
|
|
|
|
|
|
|
|
AutoSeededRandomPool &RandomPool() {
|
|
|
|
static AutoSeededRandomPool singleton;
|
|
|
|
return singleton;
|
|
|
|
}
|
|
|
|
|
|
|
|
Key Key::CreateRandomKey() {
|
|
|
|
Key result;
|
|
|
|
RandomPool().GenerateBlock(result._key, KEYLENGTH_BINARY);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Key Key::FromString(const std::string &key) {
|
|
|
|
assert(key.size() == KEYLENGTH_STRING);
|
|
|
|
Key result;
|
|
|
|
StringSource(key, true,
|
|
|
|
new HexDecoder(new ArraySink(result._key, KEYLENGTH_BINARY))
|
|
|
|
);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-12-13 11:59:48 +01:00
|
|
|
string Key::ToString() const {
|
2014-12-09 20:36:32 +01:00
|
|
|
string result;
|
|
|
|
ArraySource(_key, KEYLENGTH_BINARY, true,
|
|
|
|
new HexEncoder(new StringSink(result))
|
|
|
|
);
|
|
|
|
assert(result.size() == KEYLENGTH_STRING);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
const unsigned char *Key::data() const {
|
|
|
|
return _key;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const Key &lhs, const Key &rhs) {
|
|
|
|
return 0 == std::memcmp(lhs.data(), rhs.data(), Key::KEYLENGTH_BINARY);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const Key &lhs, const Key &rhs) {
|
|
|
|
return !operator==(lhs, rhs);
|
|
|
|
}
|
|
|
|
|
2014-12-13 11:59:48 +01:00
|
|
|
void Key::ToBinary(void *target) const {
|
|
|
|
std::memcpy(target, _key, KEYLENGTH_BINARY);
|
|
|
|
}
|
|
|
|
|
2014-12-13 17:43:02 +01:00
|
|
|
Key Key::FromBinary(const void *source) {
|
2014-12-13 11:59:48 +01:00
|
|
|
Key result;
|
|
|
|
std::memcpy(result._key, source, KEYLENGTH_BINARY);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-12-09 20:36:32 +01:00
|
|
|
}
|