diff options
Diffstat (limited to 'src/lib/math/bigint/bigint.cpp')
-rw-r--r-- | src/lib/math/bigint/bigint.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/math/bigint/bigint.cpp b/src/lib/math/bigint/bigint.cpp index a42707e07..694c7afab 100644 --- a/src/lib/math/bigint/bigint.cpp +++ b/src/lib/math/bigint/bigint.cpp @@ -80,6 +80,11 @@ BigInt::BigInt(const std::string& str) else set_sign(Positive); } +BigInt::BigInt(const uint8_t input[], size_t length) + { + binary_decode(input, length); + } + /* * Construct a BigInt from an encoded BigInt */ |