mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-01 19:21:10 +00:00
-BEGIN VERIFY SCRIPT- sed --in-place --regexp-extended \ 's;( 20[0-2][0-9])(-20[0-2][0-9])? The Bitcoin Core developers;\1-present The Bitcoin Core developers;g' \ $( git grep -l 'The Bitcoin Core developers' -- ':(exclude)COPYING' ':(exclude)src/ipc/libmultiprocess' ':(exclude)src/minisketch' ) -END VERIFY SCRIPT-
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
// Copyright (c) 2019-present The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <chainparams.h>
|
|
#include <consensus/consensus.h>
|
|
#include <core_io.h>
|
|
#include <policy/policy.h>
|
|
#include <script/script.h>
|
|
#include <test/fuzz/FuzzedDataProvider.h>
|
|
#include <test/fuzz/fuzz.h>
|
|
#include <test/fuzz/util.h>
|
|
#include <univalue.h>
|
|
#include <util/chaintype.h>
|
|
|
|
void initialize_script_format()
|
|
{
|
|
SelectParams(ChainType::REGTEST);
|
|
}
|
|
|
|
FUZZ_TARGET(script_format, .init = initialize_script_format)
|
|
{
|
|
FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
|
|
const CScript script{ConsumeScript(fuzzed_data_provider)};
|
|
if (script.size() > MAX_STANDARD_TX_WEIGHT / WITNESS_SCALE_FACTOR) {
|
|
return;
|
|
}
|
|
|
|
(void)FormatScript(script);
|
|
(void)ScriptToAsmStr(script, /*fAttemptSighashDecode=*/fuzzed_data_provider.ConsumeBool());
|
|
|
|
UniValue o1(UniValue::VOBJ);
|
|
auto include_hex = fuzzed_data_provider.ConsumeBool();
|
|
auto include_address = fuzzed_data_provider.ConsumeBool();
|
|
ScriptToUniv(script, /*out=*/o1, include_hex, include_address);
|
|
}
|