1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
|
/*
* BigInt Base
* (C) 1999-2011,2012 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/bigint.h>
#include <botan/internal/mp_core.h>
#include <botan/get_byte.h>
#include <botan/parsing.h>
#include <botan/internal/rounding.h>
#include <botan/internal/bit_ops.h>
namespace Botan {
/*
* Construct a BigInt from a regular number
*/
BigInt::BigInt(u64bit n)
{
if(n == 0)
return;
const size_t limbs_needed = sizeof(u64bit) / sizeof(word);
m_reg.resize(4*limbs_needed);
for(size_t i = 0; i != limbs_needed; ++i)
m_reg[i] = ((n >> (i*MP_WORD_BITS)) & MP_WORD_MASK);
}
/*
* Construct a BigInt of the specified size
*/
BigInt::BigInt(Sign s, size_t size)
{
m_reg.resize(round_up<size_t>(size, 8));
m_signedness = s;
}
/*
* Copy constructor
*/
BigInt::BigInt(const BigInt& other)
{
m_reg = other.m_reg;
m_signedness = other.m_signedness;
}
/*
* Construct a BigInt from a string
*/
BigInt::BigInt(const std::string& str)
{
Base base = Decimal;
size_t markers = 0;
bool negative = false;
if(str.length() > 0 && str[0] == '-')
{
markers += 1;
negative = true;
}
if(str.length() > markers + 2 && str[markers ] == '0' &&
str[markers + 1] == 'x')
{
markers += 2;
base = Hexadecimal;
}
*this = decode(reinterpret_cast<const byte*>(str.data()) + markers,
str.length() - markers, base);
if(negative) set_sign(Negative);
else set_sign(Positive);
}
/*
* Construct a BigInt from an encoded BigInt
*/
BigInt::BigInt(const byte input[], size_t length, Base base)
{
*this = decode(input, length, base);
}
/*
* Construct a BigInt from an encoded BigInt
*/
BigInt::BigInt(RandomNumberGenerator& rng, size_t bits)
{
randomize(rng, bits);
}
/*
* Grow the internal storage
*/
void BigInt::grow_to(size_t n)
{
if(n > size())
m_reg.resize(round_up<size_t>(n, 8));
}
/*
* Comparison Function
*/
s32bit BigInt::cmp(const BigInt& other, bool check_signs) const
{
if(check_signs)
{
if(other.is_positive() && this->is_negative())
return -1;
if(other.is_negative() && this->is_positive())
return 1;
if(other.is_negative() && this->is_negative())
return (-bigint_cmp(this->data(), this->sig_words(),
other.data(), other.sig_words()));
}
return bigint_cmp(this->data(), this->sig_words(),
other.data(), other.sig_words());
}
/*
* Return bits {offset...offset+length}
*/
u32bit BigInt::get_substring(size_t offset, size_t length) const
{
if(length > 32)
throw Invalid_Argument("BigInt::get_substring: Substring size too big");
u64bit piece = 0;
for(size_t i = 0; i != 8; ++i)
{
const byte part = byte_at((offset / 8) + (7-i));
piece = (piece << 8) | part;
}
const u64bit mask = (static_cast<u64bit>(1) << length) - 1;
const size_t shift = (offset % 8);
return static_cast<u32bit>((piece >> shift) & mask);
}
/*
* Convert this number to a u32bit, if possible
*/
u32bit BigInt::to_u32bit() const
{
if(is_negative())
throw Encoding_Error("BigInt::to_u32bit: Number is negative");
if(bits() >= 32)
throw Encoding_Error("BigInt::to_u32bit: Number is too big to convert");
u32bit out = 0;
for(u32bit j = 0; j != 4; ++j)
out = (out << 8) | byte_at(3-j);
return out;
}
/*
* Set bit number n
*/
void BigInt::set_bit(size_t n)
{
const size_t which = n / MP_WORD_BITS;
const word mask = static_cast<word>(1) << (n % MP_WORD_BITS);
if(which >= size()) grow_to(which + 1);
m_reg[which] |= mask;
}
/*
* Clear bit number n
*/
void BigInt::clear_bit(size_t n)
{
const size_t which = n / MP_WORD_BITS;
const word mask = static_cast<word>(1) << (n % MP_WORD_BITS);
if(which < size())
m_reg[which] &= ~mask;
}
/*
* Clear all but the lowest n bits
*/
void BigInt::mask_bits(size_t n)
{
if(n == 0) { clear(); return; }
const size_t top_word = n / MP_WORD_BITS;
const word mask = (static_cast<word>(1) << (n % MP_WORD_BITS)) - 1;
if(top_word < size())
clear_mem(&m_reg[top_word+1], size() - (top_word + 1));
m_reg[top_word] &= mask;
}
/*
* Count how many bytes are being used
*/
size_t BigInt::bytes() const
{
return (bits() + 7) / 8;
}
/*
* Count how many bits are being used
*/
size_t BigInt::bits() const
{
const size_t words = sig_words();
if(words == 0)
return 0;
const size_t full_words = words - 1;
return (full_words * MP_WORD_BITS + high_bit(word_at(full_words)));
}
/*
* Calcluate the size in a certain base
*/
size_t BigInt::encoded_size(Base base) const
{
static const double LOG_2_BASE_10 = 0.30102999566;
if(base == Binary)
return bytes();
else if(base == Hexadecimal)
return 2*bytes();
else if(base == Decimal)
return static_cast<size_t>((bits() * LOG_2_BASE_10) + 1);
else
throw Invalid_Argument("Unknown base for BigInt encoding");
}
/*
* Set the sign
*/
void BigInt::set_sign(Sign s)
{
if(is_zero())
m_signedness = Positive;
else
m_signedness = s;
}
/*
* Reverse the value of the sign flag
*/
void BigInt::flip_sign()
{
set_sign(reverse_sign());
}
/*
* Return the opposite value of the current sign
*/
BigInt::Sign BigInt::reverse_sign() const
{
if(sign() == Positive)
return Negative;
return Positive;
}
/*
* Return the negation of this number
*/
BigInt BigInt::operator-() const
{
BigInt x = (*this);
x.flip_sign();
return x;
}
/*
* Return the absolute value of this number
*/
BigInt BigInt::abs() const
{
BigInt x = (*this);
x.set_sign(Positive);
return x;
}
/*
* Encode this number into bytes
*/
void BigInt::binary_encode(byte output[]) const
{
const size_t sig_bytes = bytes();
for(size_t i = 0; i != sig_bytes; ++i)
output[sig_bytes-i-1] = byte_at(i);
}
/*
* Set this number to the value in buf
*/
void BigInt::binary_decode(const byte buf[], size_t length)
{
const size_t WORD_BYTES = sizeof(word);
clear();
m_reg.resize(round_up<size_t>((length / WORD_BYTES) + 1, 8));
for(size_t i = 0; i != length / WORD_BYTES; ++i)
{
const size_t top = length - WORD_BYTES*i;
for(size_t j = WORD_BYTES; j > 0; --j)
m_reg[i] = (m_reg[i] << 8) | buf[top - j];
}
for(size_t i = 0; i != length % WORD_BYTES; ++i)
m_reg[length / WORD_BYTES] = (m_reg[length / WORD_BYTES] << 8) | buf[i];
}
}
|