5 #ifndef BITCOIN_WALLET_CRYPTER_H 6 #define BITCOIN_WALLET_CRYPTER_H 49 READWRITE(obj.vchCryptedKey, obj.vchSalt, obj.nDerivationMethod, obj.nDeriveIterations, obj.vchOtherDerivationParameters);
62 typedef std::vector<unsigned char, secure_allocator<unsigned char> >
CKeyingMaterial;
64 namespace wallet_crypto_tests
74 std::vector<unsigned char, secure_allocator<unsigned char>>
vchKey;
75 std::vector<unsigned char, secure_allocator<unsigned char>>
vchIV;
81 bool SetKeyFromPassphrase(
const SecureString &strKeyData,
const std::vector<unsigned char>& chSalt,
const unsigned int nRounds,
const unsigned int nDerivationMethod);
111 #endif // BITCOIN_WALLET_CRYPTER_H Private key encryption is done based on a CMasterKey, which holds a salt and random encryption key...
bool SetKeyFromPassphrase(const SecureString &strKeyData, const std::vector< unsigned char > &chSalt, const unsigned int nRounds, const unsigned int nDerivationMethod)
std::vector< unsigned char > vchOtherDerivationParameters
Use this for more parameters to key derivation, such as the various parameters to scrypt...
SERIALIZE_METHODS(CMasterKey, obj)
std::vector< unsigned char, secure_allocator< unsigned char > > vchKey
bool Encrypt(const CKeyingMaterial &vchPlaintext, std::vector< unsigned char > &vchCiphertext) const
std::basic_string< char, std::char_traits< char >, secure_allocator< char > > SecureString
bool Decrypt(const std::vector< unsigned char > &vchCiphertext, CKeyingMaterial &vchPlaintext) const
void memory_cleanse(void *ptr, size_t len)
Secure overwrite a buffer (possibly containing secret data) with zero-bytes.
An encapsulated public key.
const unsigned int WALLET_CRYPTO_IV_SIZE
bool SetKey(const CKeyingMaterial &chNewKey, const std::vector< unsigned char > &chNewIV)
bool DecryptSecret(const CKeyingMaterial &vMasterKey, const std::vector< unsigned char > &vchCiphertext, const uint256 &nIV, CKeyingMaterial &vchPlaintext)
unsigned int nDeriveIterations
unsigned int nDerivationMethod
0 = EVP_sha512() 1 = scrypt()
std::vector< unsigned char, secure_allocator< unsigned char > > vchIV
bool DecryptKey(const CKeyingMaterial &vMasterKey, const std::vector< unsigned char > &vchCryptedSecret, const CPubKey &vchPubKey, CKey &key)
bool EncryptSecret(const CKeyingMaterial &vMasterKey, const CKeyingMaterial &vchPlaintext, const uint256 &nIV, std::vector< unsigned char > &vchCiphertext)
std::vector< unsigned char > vchSalt
int BytesToKeySHA512AES(const std::vector< unsigned char > &chSalt, const SecureString &strKeyData, int count, unsigned char *key, unsigned char *iv) const
const unsigned int WALLET_CRYPTO_KEY_SIZE
Encryption/decryption context with key information.
friend class wallet_crypto_tests::TestCrypter
std::vector< unsigned char > vchCryptedKey
An encapsulated private key.
const unsigned int WALLET_CRYPTO_SALT_SIZE
std::vector< unsigned char, secure_allocator< unsigned char > > CKeyingMaterial