From 5909bcd3bf3c3502355e89fd0b76bb8e93d8a95b Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Mon, 18 Nov 2019 15:26:55 -0800 Subject: Add bounds checks in key_io before DecodeBase58Check --- src/base58.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/base58.h') diff --git a/src/base58.h b/src/base58.h index cfdab511b6..90eded4992 100644 --- a/src/base58.h +++ b/src/base58.h @@ -16,7 +16,6 @@ #include -#include #include #include @@ -36,13 +35,13 @@ std::string EncodeBase58(const std::vector& vch); * return true if decoding is successful. * psz cannot be nullptr. */ -NODISCARD bool DecodeBase58(const char* psz, std::vector& vchRet, int max_ret_len = std::numeric_limits::max()); +NODISCARD bool DecodeBase58(const char* psz, std::vector& vchRet, int max_ret_len); /** * Decode a base58-encoded string (str) into a byte vector (vchRet). * return true if decoding is successful. */ -NODISCARD bool DecodeBase58(const std::string& str, std::vector& vchRet, int max_ret_len = std::numeric_limits::max()); +NODISCARD bool DecodeBase58(const std::string& str, std::vector& vchRet, int max_ret_len); /** * Encode a byte vector into a base58-encoded string, including checksum @@ -53,12 +52,12 @@ std::string EncodeBase58Check(const std::vector& vchIn); * Decode a base58-encoded string (psz) that includes a checksum into a byte * vector (vchRet), return true if decoding is successful */ -NODISCARD bool DecodeBase58Check(const char* psz, std::vector& vchRet, int max_ret_len = std::numeric_limits::max()); +NODISCARD bool DecodeBase58Check(const char* psz, std::vector& vchRet, int max_ret_len); /** * Decode a base58-encoded string (str) that includes a checksum into a byte * vector (vchRet), return true if decoding is successful */ -NODISCARD bool DecodeBase58Check(const std::string& str, std::vector& vchRet, int max_ret_len = std::numeric_limits::max()); +NODISCARD bool DecodeBase58Check(const std::string& str, std::vector& vchRet, int max_ret_len); #endif // BITCOIN_BASE58_H -- cgit v1.2.3