-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathUtils.cpp
More file actions
170 lines (136 loc) · 3.5 KB
/
Utils.cpp
File metadata and controls
170 lines (136 loc) · 3.5 KB
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
//
// Utils.cpp
// RSA
//
// Created by ivan sarno on 21/08/15.
// Copyright (c) 2015 ivan sarno
/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
//Version V.4.1
#include "Utils.h"
using namespace RSA;
using namespace Utils;
//random number generator, only for test
Utils::TestGenerator::TestGenerator()
{
mpz_init(rand);
std::random_device rd;
seed = rd();
gmp_randinit_mt(rstate);
gmp_randseed_ui(rstate, seed);
}
//random number generator, only for test
Utils::TestGenerator::TestGenerator(unsigned long long seed)
{
mpz_init(rand);
this->seed = seed;
gmp_randinit_mt(rstate);
gmp_randseed_ui(rstate, this->seed);
}
Utils::TestGenerator::~TestGenerator()
{
mpz_clear(rand);
gmp_randclear(rstate);
}
BigInteger Utils::TestGenerator::getBig(unsigned int size)
{
mpz_urandomb(rand, rstate, size);
return BigInteger(rand);
};
unsigned long long Utils::TestGenerator::getInt()
{
BigInteger temp = this->getBig(64);
return temp.get_si();
}
BigInteger Utils::pow(BigInteger base, BigInteger exp)
{
BigInteger resoult = 1;
while(exp > 0)
{
if(BigInteger(exp & 1) == 1)
resoult *= base;
base *= base;
exp >>=1;
}
return resoult;
}
BigInteger Utils::mod_pow(BigInteger base, BigInteger exp, const BigInteger &mod)
{
BigInteger resoult = 1;
while(exp > 0)
{
if(BigInteger(exp & 1) == 1)
resoult = (base * resoult) % mod;
base = (base * base) % mod;
exp >>=1;
}
return resoult;
}
BigInteger Utils::inverse(const BigInteger &number, const BigInteger &modulus, unsigned int size)
{
if (modulus == 0)
{
return 0;
}
int j = 1;
BigInteger result, temp, intermediate;
BigInteger *buffer = new BigInteger[size+3];
buffer[0] = number;
buffer[1] = modulus;
while(buffer[j] != 0) //find intermediate values of greatest common divisor
{
j++;
buffer[j] = buffer[j-2] % buffer[j-1];
}
result = 1;
intermediate = 1;
temp = 0;
while(j > 1) //inverse calculation from intermediates values
{
j--;
result = temp;
temp = intermediate - ((buffer[j-1] / buffer[j]) * temp);
intermediate = result;
}
delete [] buffer;
if(result > 0)
return result;
else return modulus + result;
}
bool Utils::coprime (BigInteger a, BigInteger b)
{
if (b == 0)
return false;
BigInteger temp;
long i = 0;
while(b > 0) //find greatest common divisor
{
i++;
temp = b;
b = a % b;
a = temp;
}
return a == 1;
}
BigInteger Utils::byte2biginteger(uint8_t *byte, unsigned int size)
{
mpz_t z;
mpz_init(z);
mpz_import(z, size, 1, sizeof(byte[0]), 0, 0, byte);
BigInteger r = BigInteger(z);
mpz_clear(z);
return r;
}
unsigned Utils::bitSize(const BigInteger &number)
{
return static_cast<unsigned int>(mpz_sizeinbase(number.get_mpz_t(), 2));
}