-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDiffieHellman.h
172 lines (146 loc) Β· 5.04 KB
/
DiffieHellman.h
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
/**
* @file DiffieHellman.h
* @brief DiffieHellman is a lib which implements DiffieHellman's key exchange.
*
* Copyright (c) 2020-forever Vlad Rogozin ([email protected])
*
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
* or copy at http://opensource.org/licenses/MIT)
*/
#ifndef RED_DIFFIEHELLMAN_H
#define RED_DIFFIEHELLMAN_H
// System libs.
#include <sstream>
#include <stdlib.h>
#include <ctime>
#include <math.h>
// External libs.
#include <boost/multiprecision/cpp_int.hpp>
// RedLibrary.
#include "RedTypes.h"
#define REDDIFFIEHELLMAN_VERSION "1.3"
namespace Red {
/// Creating a template for integers, because we need it to be cross-typed.
template<class INT_SIZE>
class DiffieHellman {
private:
//
// Variables.
//
/// x = G**a mod P
/// Local vars.
INT_SIZE *m_G, // Base num.
*m_P, // P num.
*m_a; // Secret num.
//
// Private functions.
//
/**
* @brief power
*
* Serves to generate a key using a, b, P.
*
* @param a Number which we will modificate.
* @param b Chosen private key.
* @param P Result number.
*
* @return Generated key.
*/
inline INT_SIZE * power(const INT_SIZE *a, const INT_SIZE *b, const INT_SIZE *P) const {
if (*b == 1) {
INT_SIZE *res = new INT_SIZE;
*res = *a;
return res;
} else {
// Unfortunately we have to write a lot here, because there is no a good way to write it shorter.
// So, let's do that!
/// Need to get cpp_int version of base.
boost::multiprecision::cpp_int a_c = boost::multiprecision::cpp_int(*a);
/// And ui version of our exponent.
Red::uint_t b_int = 0;
{
std::stringstream ss;
ss << *b;
ss >> b_int;
}
/// Let's get exponented 'a'...
boost::multiprecision::cpp_int ab = boost::multiprecision::pow(a_c, b_int);
/// Now we need cpp_int version of 'P'.
boost::multiprecision::cpp_int p_c = 0;
{
std::stringstream ss;
ss << *P;
ss >> p_c;
}
/// Moded expenented 'a' is needed...
boost::multiprecision::cpp_int abp = ab % p_c;
/// Now we just need to convert it to the type we need.
INT_SIZE *res = new INT_SIZE;
{
std::stringstream ss;
ss << abp;
ss >> *res;
}
/// Yay, we finished this.
return res;
}
}
public:
/**
* @brief DiffieHellman
*
* GeneratedKey = G**a mod P
*
* Where,
* @param ResultNum G number.
* @param ModificatedNum P number.
* @param SecretNum Secret number.
*/
DiffieHellman(INT_SIZE *ResultNum = 0,
INT_SIZE *ModificatedNum = 0,
INT_SIZE *SecretNum = 0)
: m_G(ResultNum), m_P(ModificatedNum), m_a(SecretNum) {}
/**
* @brief Set
*
* GeneratedKey = G**a mod P
*
* Where,
* @param ResultNum G number.
* @param ModificatedNum P number.
* @param SecretNum Secret number.
*/
void Set(INT_SIZE *ResultNum,
INT_SIZE *ModificatedNum,
INT_SIZE *SecretNum) {
this->m_G = ResultNum;
this->m_P = ModificatedNum;
this->m_a = SecretNum;
}
/**
* @brief GetPublicValue
*
* Serves to calculate a key for partner.
*
* @return Key for public exchange.
*/
INT_SIZE * GetPublicValue() const {
return power(this->m_G, this->m_a, this->m_P);
}
/**
* @brief GetSymmetricKey
*
* Serves to to calculate symmetric key.
*
* @param x Partner's key, which we got after exchange part.
*
* @return Shared secret.
*/
INT_SIZE * GetSymmetricKey(const INT_SIZE *x) const {
return power(x, this->m_a, this->m_P);
}
// Base dtor.
~DiffieHellman() {}
};
}
#endif // RED_DIFFIEHELLMAN_H