From 2af6c4499013911d7b01ce3ce1acc5aa8fef15ab Mon Sep 17 00:00:00 2001 From: lloyd Date: Tue, 11 Nov 2008 19:20:32 +0000 Subject: Move most of the remaining libstate code to pk_engine.cpp, move engines back to the toplevel since most othe dependencies have been removed now (except get_cipher which still needs changes) --- src/engine/gnump/gmp_wrap.h | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/engine/gnump/gmp_wrap.h (limited to 'src/engine/gnump/gmp_wrap.h') diff --git a/src/engine/gnump/gmp_wrap.h b/src/engine/gnump/gmp_wrap.h new file mode 100644 index 000000000..e2a420e6b --- /dev/null +++ b/src/engine/gnump/gmp_wrap.h @@ -0,0 +1,36 @@ +/************************************************* +* GMP MPZ Wrapper Header File * +* (C) 1999-2007 Jack Lloyd * +*************************************************/ + +#ifndef BOTAN_GMP_MPZ_WRAP_H__ +#define BOTAN_GMP_MPZ_WRAP_H__ + +#include +#include + +namespace Botan { + +/************************************************* +* Lightweight GMP mpz_t Wrapper * +*************************************************/ +class BOTAN_DLL GMP_MPZ + { + public: + mpz_t value; + + BigInt to_bigint() const; + void encode(byte[], u32bit) const; + u32bit bytes() const; + + GMP_MPZ& operator=(const GMP_MPZ&); + + GMP_MPZ(const GMP_MPZ&); + GMP_MPZ(const BigInt& = 0); + GMP_MPZ(const byte[], u32bit); + ~GMP_MPZ(); + }; + +} + +#endif -- cgit v1.2.3