diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2019-10-02 11:20:17 +0000 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2019-12-10 16:39:40 +0000 |
commit | 074cb6451b16158589d743488930963bcf4b024c (patch) | |
tree | 49b47791d44067fa5c9423e947842e5d08b69b83 /src/test/fuzz/parse_hd_keypath.cpp | |
parent | 0dc5907d0f0490036c50cb7aee19e31075bbf402 (diff) |
tests: Add ParseHDKeypath(...) (bip32) fuzzing harness
Diffstat (limited to 'src/test/fuzz/parse_hd_keypath.cpp')
-rw-r--r-- | src/test/fuzz/parse_hd_keypath.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/fuzz/parse_hd_keypath.cpp b/src/test/fuzz/parse_hd_keypath.cpp new file mode 100644 index 0000000000..9a23f4b2d4 --- /dev/null +++ b/src/test/fuzz/parse_hd_keypath.cpp @@ -0,0 +1,13 @@ +// Copyright (c) 2009-2019 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 <test/fuzz/fuzz.h> +#include <util/bip32.h> + +void test_one_input(const std::vector<uint8_t>& buffer) +{ + const std::string keypath_str(buffer.begin(), buffer.end()); + std::vector<uint32_t> keypath; + (void)ParseHDKeypath(keypath_str, keypath); +} |