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