diff options
Diffstat (limited to 'src/math/bigint/bigint.h')
-rw-r--r-- | src/math/bigint/bigint.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/math/bigint/bigint.h b/src/math/bigint/bigint.h index 4d3e37708..bf1e8bb0e 100644 --- a/src/math/bigint/bigint.h +++ b/src/math/bigint/bigint.h @@ -304,15 +304,6 @@ class BOTAN_DLL BigInt const word* data() const { return &m_reg[0]; } /** - * Assign using a plain word array - */ - void assign(const word x[], size_t length) - { - m_reg.resize(length); - copy_mem(&m_reg[0], x, length); - } - - /** * Increase internal register buffer to at least n words * @param n new size of register */ @@ -363,7 +354,6 @@ class BOTAN_DLL BigInt const BigInt& min, const BigInt& max); - /** * Create a power of two * @param n the power of two to create |