big_int.h
1 /*
2 ** UICore
3 ** Copyright (c) 1997-2015 The UICore Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries UICore may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Mark Page
27 ** Michael J. Fromberger
28 */
29 
30 // This class is based on the original MPI library (not NSS, because of license restrictions) with some modifications.
31 // Some ideas and algorithms are from NSS (Netscape Security Suite). Where they have been used, the function contains a reference note
32 //
33 // Note, since September 2011, I believe the MPI homepage is now: http://spinning-yarns.org/michael/mpi/
34 // Note, since 2013, the MPI page no longer exists, however the internet archive has the details here: http://web.archive.org/web/20100426001741/http://spinning-yarns.org/michael/mpi/README
35 // The license is as follows
36 // This software was written by Michael J. Fromberger,
37 // http://www.dartmouth.edu/~sting/
38 //
39 // See the MPI home page at
40 // http://www.dartmouth.edu/~sting/mpi/
41 //
42 // This software is in the public domain. It is entirely free, and you
43 // may use it and/or redistribute it for whatever purpose you choose;
44 // however, as free software, it is provided without warranty of any
45 // kind, not even the implied warranty of merchantability or fitness for
46 // a particular purpose.
47 
48 
49 #pragma once
50 
51 #include <cstdint>
52 #include <memory>
53 
54 namespace uicore
55 {
56  class BigInt_Impl;
57 
59  class BigInt
60  {
61  public:
63  BigInt();
64 
66  explicit BigInt(uint32_t value);
67 
69  explicit BigInt(int32_t value);
70 
72  explicit BigInt(uint64_t value);
73 
75  explicit BigInt(int64_t value);
76 
78  BigInt(const BigInt &other);
79 
81  ~BigInt();
82 
83  BigInt &operator=(const BigInt& other);
84 
85  void read_unsigned_octets(const unsigned char *input_str, unsigned int input_length);
86 
87  void zero();
88 
89  bool make_prime(unsigned int num_bits);
90 
92  int cmp_z() const;
93 
94  void set_bit(unsigned int bit_number, unsigned int value);
95 
96  int significant_bits() const;
97 
98  void sieve(const uint32_t *primes, unsigned int num_primes, std::vector<unsigned char> &sieve);
99 
101  uint32_t mod_d(uint32_t d) const;
102 
104  void div_d(uint32_t d, BigInt *q, uint32_t *r) const;
105 
111  bool fermat(uint32_t w) const;
112 
117  bool pprime(int nt) const;
118 
120  void set(int32_t d);
121  void set(uint32_t d);
122  void set(uint64_t d);
123  void set(int64_t d);
124 
128  void get(uint32_t &d);
129  void get(uint64_t &d);
130  void get(int64_t &d);
131  void get(int32_t &d);
132 
140  void exptmod(const BigInt *b, const BigInt *m, BigInt *c) const;
141 
143  void mod(const BigInt *m, BigInt *c) const;
144 
150  void div(const BigInt &b, BigInt *q, BigInt *r) const;
151  void div(uint32_t d, BigInt *q, BigInt *r) const;
152 
154  BigInt operator + (const BigInt& b);
155  BigInt operator + (uint32_t d);
156 
158  BigInt operator += (const BigInt& b);
159  BigInt operator += (uint32_t d);
160 
162  BigInt operator - (const BigInt& b);
163  BigInt operator - (uint32_t d);
164 
166  BigInt operator -= (const BigInt& b);
167  BigInt operator -= (uint32_t d);
168 
170  BigInt operator * (const BigInt& b);
171  BigInt operator * (uint32_t d);
172 
174  BigInt operator *= (const BigInt& b);
175  BigInt operator *= (uint32_t d);
176 
178  BigInt operator / (const BigInt& b);
179  BigInt operator / (uint32_t d);
180 
182  BigInt operator /= (const BigInt& b);
183  BigInt operator /= (uint32_t d);
184 
186  BigInt operator % (const BigInt& b);
187  BigInt operator % (uint32_t d);
188 
190  BigInt operator %= (const BigInt& b);
191  BigInt operator %= (uint32_t d);
192 
193  int cmp(const BigInt *b) const;
194 
196  int cmp_d(uint32_t d) const;
197 
199  void neg(BigInt *b) const;
200 
201  unsigned int trailing_zeros() const;
202 
203  void sqrmod(const BigInt *m, BigInt *c) const;
204  void sqr(BigInt *b) const;
205 
214  void random();
215 
220  void exch(BigInt *mp2);
221 
226  bool invmod(const BigInt *m, BigInt *c) const;
227 
232  void xgcd(const BigInt *b, BigInt *g, BigInt *x, BigInt *y) const;
233 
235  void abs(BigInt *b) const;
236 
238  bool is_even() const;
239 
241  bool is_odd() const;
242 
244  void div_2(BigInt *c) const;
245 
246  void to_unsigned_octets(unsigned char *output_str, unsigned int output_length) const;
247 
248  int unsigned_octet_size() const;
249 
250  private:
251  std::unique_ptr<BigInt_Impl> impl;
252  };
253 }
void exptmod(const BigInt *b, const BigInt *m, BigInt *c) const
Compute c = (a ** b) mod m.
void to_unsigned_octets(unsigned char *output_str, unsigned int output_length) const
int cmp_d(uint32_t d) const
Compare a <=> d. Returns <0 if a0 if a>d.
BigInt operator/=(const BigInt &b)
Compute this /= b.
BigInt operator-=(const BigInt &b)
Compute this -= b.
BigInt()
Constructs a big integer (initialised to zero)
void xgcd(const BigInt *b, BigInt *g, BigInt *x, BigInt *y) const
Compute g = (a, b) and values x and y satisfying Bezout's identity.
int significant_bits() const
void abs(BigInt *b) const
Compute b = |a|. 'a' and 'b' may be identical.
void div_2(BigInt *c) const
Compute c = a / 2, disregarding the remainder.
BigInt operator*(const BigInt &b)
Compute result = this * b.
BigInt operator+(const BigInt &b)
Compute result = this + b.
int cmp_z() const
Compare a <=> 0. Returns <0 if a<0, 0 if a=0, >0 if a>0.
bool pprime(int nt) const
Performs nt iteration of the Miller-Rabin probabilistic primality test on a.
void read_unsigned_octets(const unsigned char *input_str, unsigned int input_length)
void div(const BigInt &b, BigInt *q, BigInt *r) const
Compute q = a / b and r = a mod b.
bool make_prime(unsigned int num_bits)
void set(int32_t d)
Sets a value.
bool fermat(uint32_t w) const
Using w as a witness, try pseudo-primality testing based on Fermat's little theorem.
~BigInt()
Destructor.
BigInt & operator=(const BigInt &other)
Big Integer class.
Definition: big_int.h:59
BigInt operator+=(const BigInt &b)
Compute this += b.
bool invmod(const BigInt *m, BigInt *c) const
Compute c = a^-1 (mod m), if there is an inverse for a (mod m).
void neg(BigInt *b) const
Compute b = -a. 'a' and 'b' may be identical.
void mod(const BigInt *m, BigInt *c) const
Compute c = a (mod m). Result will always be 0 <= c < m.
bool is_odd() const
Returns a true if number is odd.
void sqr(BigInt *b) const
BigInt operator-(const BigInt &b)
Compute result = this - b.
void random()
Assigns a random value to a.
bool is_even() const
Returns a true if number is even.
BigInt operator/(const BigInt &b)
Compute result = this / b.
void sieve(const uint32_t *primes, unsigned int num_primes, std::vector< unsigned char > &sieve)
BigInt operator*=(const BigInt &b)
Compute this *= b.
void div_d(uint32_t d, BigInt *q, uint32_t *r) const
Compute the quotient q = a / d and remainder r = a mod d, for a single digit d. Respects the sign of ...
void sqrmod(const BigInt *m, BigInt *c) const
uint32_t mod_d(uint32_t d) const
Compute c = a (mod d). Result will always be 0 <= c < d.
BigInt operator%=(const BigInt &b)
Compute this %= b.
BigInt operator%(const BigInt &b)
Compute result = this % b.
int cmp(const BigInt *b) const
void set_bit(unsigned int bit_number, unsigned int value)
unsigned int trailing_zeros() const
void exch(BigInt *mp2)
Exchange mp1 and mp2 without allocating any intermediate memory.
Definition: Application/application.h:35
int unsigned_octet_size() const