15void initialize_crypter()
17 static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
18 g_setup = testing_setup.get();
29 std::vector<unsigned char> cipher_text_ed;
33 if (fuzzed_data_provider.ConsumeBool()) {
34 const std::string random_string = fuzzed_data_provider.ConsumeRandomLengthString(100);
35 SecureString secure_string(random_string.begin(), random_string.end());
37 const unsigned int derivation_method = fuzzed_data_provider.ConsumeBool() ? 0 : fuzzed_data_provider.ConsumeIntegral<
unsigned int>();
40 crypt.SetKeyFromPassphrase(secure_string,
42 fuzzed_data_provider.ConsumeIntegralInRange<
unsigned int>(0, 25000),
47 random_ckey.
Set(random_key.begin(), random_key.end(), fuzzed_data_provider.ConsumeBool());
48 if (!random_ckey.
IsValid())
return;
51 LIMITED_WHILE(good_data && fuzzed_data_provider.ConsumeBool(), 100)
57 plain_text_ed =
CKeyingMaterial(random_vector.begin(), random_vector.end());
63 (void)crypt.Encrypt(plain_text_ed, cipher_text_ed);
66 (void)crypt.Decrypt(cipher_text_ed, plain_text_ed);
69 const CKeyingMaterial master_key(random_key.begin(), random_key.end());;
70 (void)
EncryptSecret(master_key, plain_text_ed, pubkey.GetHash(), cipher_text_ed);
73 std::optional<CPubKey> random_pub_key{ConsumeDeserializable<CPubKey>(fuzzed_data_provider)};
74 if (!random_pub_key) {
78 pubkey = *random_pub_key;
83 (void)
DecryptKey(master_key, cipher_text_ed, pubkey, key);
An encapsulated private key.
bool IsValid() const
Check whether this private key is valid.
CPubKey GetPubKey() const
Compute the public key from a private key.
void Set(const T pbegin, const T pend, bool fCompressedIn)
Initialize using begin and end iterators to byte data.
An encapsulated public key.
#define LIMITED_WHILE(condition, limit)
Can be used to limit a theoretically unbounded loop.
std::vector< unsigned char, secure_allocator< unsigned char > > CKeyingMaterial
const unsigned int WALLET_CRYPTO_KEY_SIZE
FUZZ_TARGET(coin_grinder)
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
Testing setup that configures a complete environment.
std::vector< B > ConsumeFixedLengthByteVector(FuzzedDataProvider &fuzzed_data_provider, const size_t length) noexcept
Returns a byte vector of specified size regardless of the number of remaining bytes available from th...
size_t CallOneOf(FuzzedDataProvider &fuzzed_data_provider, Callables... callables)
std::vector< B > ConsumeRandomLengthByteVector(FuzzedDataProvider &fuzzed_data_provider, const std::optional< size_t > &max_length=std::nullopt) noexcept
void SeedRandomStateForTest(SeedRand seedtype)
Seed the global RNG state for testing and log the seed value.
@ ZEROS
Seed with a compile time constant of zeros.