From 3a94c309c06537a8f2e07785b1cd3913e92cf44c Mon Sep 17 00:00:00 2001 From: lloyd Date: Wed, 1 Aug 2012 14:59:50 +0000 Subject: Remove BigInt::assign --- src/math/bigint/bigint.h | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/math/bigint/bigint.h') 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 @@ -303,15 +303,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 -- cgit v1.2.3