From 0bea5c6d944beaa8fc880f646be207b03d1486fd Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Mon, 12 Aug 2013 00:59:14 +0200 Subject: Normalizing the neg syntax, and adding the import / export calls. --- src/BigInt.cc | 38 ++++++++++++++++++++++++++++++++------ 1 file changed, 32 insertions(+), 6 deletions(-) (limited to 'src/BigInt.cc') diff --git a/src/BigInt.cc b/src/BigInt.cc index 3f4b275..3735ad7 100644 --- a/src/BigInt.cc +++ b/src/BigInt.cc @@ -82,7 +82,7 @@ void Balau::BigInt::set(int64_t v) { } else { v = -v; set((uint64_t) v); - neg(); + do_neg(); } } @@ -97,7 +97,7 @@ void Balau::BigInt::set(int32_t v) { } else { v = -v; set((uint32_t) v); - neg(); + do_neg(); } } @@ -262,9 +262,7 @@ Balau::BigInt & Balau::BigInt::operator>>=(unsigned int a) { } Balau::BigInt Balau::BigInt::operator-() const throw (GeneralException) { - BigInt r(*this); - r.neg(); - return r; + return neg(); } Balau::BigInt & Balau::BigInt::operator++() { @@ -289,9 +287,17 @@ Balau::BigInt Balau::BigInt::operator--(int) { return r; } -Balau::BigInt & Balau::BigInt::neg() throw (GeneralException) { +Balau::BigInt Balau::BigInt::neg() const throw (GeneralException) { + BigInt r; + if (mp_neg(m_bi, r.m_bi) != CRYPT_OK) + throw GeneralException("Error while calling mp_neg"); + return r; +} + +Balau::BigInt & Balau::BigInt::do_neg() throw (GeneralException) { if (mp_neg(m_bi, m_bi) != CRYPT_OK) throw GeneralException("Error while calling mp_neg"); + return *this; } Balau::BigInt Balau::BigInt::sqrt() const throw (GeneralException) { @@ -494,6 +500,26 @@ bool Balau::BigInt::isPrime() const throw (GeneralException) { return r == LTC_MP_YES; } +size_t Balau::BigInt::exportSize() const { + return mp_unsigned_bin_size(m_bi) + 1; +} + +void Balau::BigInt::exportBin(void * _buf) const throw (GeneralException) { + unsigned char * buf = (unsigned char *) _buf; + buf[0] = comp(0) == LT ? 0xff : 0; + if (mp_to_unsigned_bin(m_bi, buf + 1) != CRYPT_OK) + throw GeneralException("Error while calling mp_to_unsigned_bin"); +} + +void Balau::BigInt::importBin(const void * _buf, size_t size) throw (GeneralException) { + unsigned char * buf = (unsigned char *) _buf; + bool isNeg = buf[0] != 0; + if (mp_read_unsigned_bin(m_bi, buf + 1, size - 1) != CRYPT_OK) + throw GeneralException("Error while calling mp_read_unsigned_bin"); + if (isNeg) + do_neg(); +} + Balau::String Balau::BigInt::toString(int radix) const { char * out = (char *) alloca(mp_count_bits(m_bi) / (radix >= 10 ? 3 : 1) + 3); mp_toradix(m_bi, out, radix); -- cgit v1.2.3