aboutsummaryrefslogtreecommitdiff
path: root/src/test/fuzz/parse_hd_keypath.cpp
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2019-10-02 11:20:17 +0000
committerpracticalswift <practicalswift@users.noreply.github.com>2019-12-10 16:39:40 +0000
commit074cb6451b16158589d743488930963bcf4b024c (patch)
tree49b47791d44067fa5c9423e947842e5d08b69b83 /src/test/fuzz/parse_hd_keypath.cpp
parent0dc5907d0f0490036c50cb7aee19e31075bbf402 (diff)
downloadbitcoin-074cb6451b16158589d743488930963bcf4b024c.tar.xz
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.cpp13
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);
+}