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
|
/*
* Fixed Window Exponentiation
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/internal/def_powm.h>
#include <botan/numthry.h>
#include <vector>
namespace Botan {
namespace {
/*
* Try to choose a good window size
*/
u32bit fw_powm_window_bits(u32bit exp_bits, u32bit,
Power_Mod::Usage_Hints hints)
{
static const u32bit wsize[][2] = {
{ 2048, 7 }, { 1024, 6 }, { 256, 5 }, { 128, 4 }, { 64, 3 }, { 0, 0 }
};
u32bit window_bits = 3;
if(exp_bits)
{
for(u32bit j = 0; wsize[j][0]; ++j)
{
if(exp_bits >= wsize[j][0])
{
window_bits += wsize[j][1];
break;
}
}
}
if(hints & Power_Mod::EXP_IS_FIXED)
window_bits += 2;
if(hints & Power_Mod::EXP_IS_LARGE)
window_bits += 2;
if(hints & Power_Mod::BASE_IS_FIXED)
++window_bits;
return window_bits;
}
}
/*
* Set the exponent
*/
void Fixed_Window_Exponentiator::set_exponent(const BigInt& e)
{
exp = e;
}
/*
* Set the base
*/
void Fixed_Window_Exponentiator::set_base(const BigInt& base)
{
window_bits = fw_powm_window_bits(exp.bits(), base.bits(), hints);
g.resize((1 << window_bits) - 1);
g[0] = base;
for(u32bit j = 1; j != g.size(); ++j)
g[j] = reducer.multiply(g[j-1], g[0]);
}
/*
* Compute the result
*/
BigInt Fixed_Window_Exponentiator::execute() const
{
const u32bit exp_nibbles = (exp.bits() + window_bits - 1) / window_bits;
BigInt x = 1;
for(u32bit j = exp_nibbles; j > 0; --j)
{
for(u32bit k = 0; k != window_bits; ++k)
x = reducer.square(x);
u32bit nibble = exp.get_substring(window_bits*(j-1), window_bits);
if(nibble)
x = reducer.multiply(x, g[nibble-1]);
}
return x;
}
/*
* Fixed_Window_Exponentiator Constructor
*/
Fixed_Window_Exponentiator::Fixed_Window_Exponentiator(const BigInt& n,
Power_Mod::Usage_Hints hints)
{
reducer = Modular_Reducer(n);
this->hints = hints;
window_bits = 0;
}
}
|