aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/engine/gnump/gmp_wrap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/engine/gnump/gmp_wrap.h')
-rw-r--r--src/lib/engine/gnump/gmp_wrap.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/lib/engine/gnump/gmp_wrap.h b/src/lib/engine/gnump/gmp_wrap.h
deleted file mode 100644
index 291d65a01..000000000
--- a/src/lib/engine/gnump/gmp_wrap.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
-* GMP MPZ Wrapper
-* (C) 1999-2007 Jack Lloyd
-*
-* Distributed under the terms of the Botan license
-*/
-
-#ifndef BOTAN_GMP_MPZ_WRAP_H__
-#define BOTAN_GMP_MPZ_WRAP_H__
-
-#include <botan/bigint.h>
-#include <gmp.h>
-
-namespace Botan {
-
-/**
-* Lightweight GMP mpz_t wrapper. For internal use only.
-*/
-class GMP_MPZ
- {
- public:
- mpz_t value;
-
- BigInt to_bigint() const;
- void encode(byte[], size_t) const;
- size_t bytes() const;
-
- secure_vector<byte> to_bytes() const
- { return BigInt::encode_locked(to_bigint()); }
-
- GMP_MPZ& operator=(const GMP_MPZ&);
-
- GMP_MPZ(const GMP_MPZ&);
- GMP_MPZ(const BigInt& = 0);
- GMP_MPZ(const byte[], size_t);
- ~GMP_MPZ();
- };
-
-}
-
-#endif