-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathexample012_rsa_crypto.cpp
More file actions
518 lines (403 loc) · 22.1 KB
/
Copy pathexample012_rsa_crypto.cpp
File metadata and controls
518 lines (403 loc) · 22.1 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
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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
///////////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2021 - 2026. //
// Distributed under the Boost Software License, //
// Version 1.0. (See accompanying file LICENSE_1_0.txt //
// or copy at http://www.boost.org/LICENSE_1_0.txt) //
///////////////////////////////////////////////////////////////////
#include <examples/example_uintwide_t.h>
#include <math/wide_integer/uintwide_t.h>
#include <util/utility/util_pseudorandom_time_point_seed.h>
#include <random>
#include <string>
namespace local_rsa
{
namespace detail {
auto ascii_to_hex(const std::string& input) -> std::string;
auto ascii_to_hex(const std::string& input) -> std::string
{
constexpr char hex[] = "0123456789abcdef"; // NOLINT(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)
std::string out;
out.reserve(input.size() * 2U);
for(const char c : input)
{
out.push_back(hex[static_cast<std::size_t>(c) >> 4U]); // NOLINT(cppcoreguidelines-pro-bounds-constant-array-index)
out.push_back(hex[static_cast<std::size_t>(c) & 0x0FU]); // NOLINT(cppcoreguidelines-pro-bounds-constant-array-index,cppcoreguidelines-avoid-magic-numbers,readability-magic-numbers)
}
return out;
}
auto hex_value(char c) -> unsigned char;
auto hex_value(char c) -> unsigned char
{
char c_result { };
if((c >= '0') && (c <= '9')) // NOLINT(cppcoreguidelines-avoid-magic-numbers,readability-magic-numbers)
{
c_result = static_cast<char>(c - '0'); // NOLINT(cppcoreguidelines-avoid-magic-numbers,readability-magic-numbers)
}
else if((c >= 'a') && (c <= 'f')) // NOLINT(cppcoreguidelines-avoid-magic-numbers,readability-magic-numbers)
{
c_result = static_cast<char>((c - 'a') + char { 10 }); // NOLINT(cppcoreguidelines-avoid-magic-numbers,readability-magic-numbers)
}
// This example is known to use lower-case exclusively
// at the calling point of this function. But we can't
// really remove the upcoming lines from the subroutine.
// So these lines are purposefully excluded from coverage.
// LCOV_EXCL_START
else if((c >= 'A') && (c <= 'F')) // NOLINT(cppcoreguidelines-avoid-magic-numbers,readability-magic-numbers)
{
c_result = static_cast<char>((c - 'A') + char { 10 }); // NOLINT(cppcoreguidelines-avoid-magic-numbers,readability-magic-numbers)
}
// LCOV_EXCL_STOP
return static_cast<unsigned char>(c_result);
}
auto hex_to_ascii(const std::string& hex) -> std::string;
auto hex_to_ascii(const std::string& hex) -> std::string
{
if((hex.size() % 2U) != 0U)
{
return std::string { };
}
std::string out { };
out.reserve(hex.size() / 2U);
for(std::size_t i{0}; i < hex.size(); i += 2U)
{
const auto high = hex_value(hex[i]);
const auto low = hex_value(hex[i + 1U]);
out.push_back(static_cast<char>((static_cast<unsigned>(high) << 4U) | static_cast<unsigned>(low)));
}
return out;
}
} // namespace detail
template<const std::size_t RsaBitCount,
#if defined(WIDE_INTEGER_NAMESPACE)
typename LimbType = WIDE_INTEGER_NAMESPACE::math::wide_integer::uint_defaultlimb_t,
#else
typename LimbType = ::math::wide_integer::uint_defaultlimb_t,
#endif
typename AllocatorType = std::allocator<LimbType>>
class rsa_base
{
public:
static constexpr std::size_t bit_count = RsaBitCount;
using allocator_type = typename std::allocator_traits<AllocatorType>::template rebind_alloc<LimbType>;
#if defined(WIDE_INTEGER_NAMESPACE)
using my_uintwide_t = WIDE_INTEGER_NAMESPACE::math::wide_integer::uintwide_t<static_cast<WIDE_INTEGER_NAMESPACE::math::wide_integer::size_t>(bit_count),
LimbType,
allocator_type>;
#else
using my_uintwide_t = ::math::wide_integer::uintwide_t<static_cast<math::wide_integer::size_t>(bit_count),
LimbType,
allocator_type>;
#endif
using limb_type = typename my_uintwide_t::limb_type;
using private_key_type =
struct
{
my_uintwide_t s;
my_uintwide_t p;
my_uintwide_t q;
};
using public_key_type =
struct public_key_type
{
my_uintwide_t r;
my_uintwide_t m;
};
virtual ~rsa_base() = default;
struct euclidean
{
template<typename IntegerType>
static auto extended_euclidean(const IntegerType& a, // NOLINT(misc-no-recursion)
const IntegerType& b,
IntegerType* x, // NOLINT(bugprone-easily-swappable-parameters)
IntegerType* y) -> IntegerType
{
// Recursive extended Euclidean algorithm.
using local_integer_type = IntegerType;
if(a == 0)
{
*x = local_integer_type { 0U };
*y = local_integer_type { 1U };
return b;
}
local_integer_type tmp_x { };
local_integer_type tmp_y { };
local_integer_type gcd_ext = extended_euclidean(b % a, a, &tmp_x, &tmp_y);
*x = std::move(tmp_y - ((b / a) * tmp_x));
*y = std::move(tmp_x);
return gcd_ext;
}
};
class encryptor
{
public:
explicit encryptor(const public_key_type& key) : public_key(key) { }
auto encrypt(const std::string& str_message) -> my_uintwide_t
{
return
powm
(
my_uintwide_t { ("0x" + detail::ascii_to_hex(str_message)).c_str() },
public_key.r,
public_key.m
);
}
private:
const public_key_type& public_key; // NOLINT(readability-identifier-naming,cppcoreguidelines-avoid-const-or-ref-data-members)
};
class decryptor
{
public:
explicit decryptor(const private_key_type& key) : private_key(key) { }
auto decrypt(const my_uintwide_t& cry_in) -> std::string
{
const my_uintwide_t tmp { powm(cry_in, private_key.s, private_key.q * private_key.p) };
std::stringstream strm { };
strm << std::hex << tmp;
return detail::hex_to_ascii(strm.str());
}
private:
const private_key_type& private_key; // NOLINT(readability-identifier-naming,cppcoreguidelines-avoid-const-or-ref-data-members)
};
rsa_base(const rsa_base& other) : my_p (other.my_p),
my_q (other.my_q),
my_r (other.my_r),
my_m (other.my_m),
phi_of_m (other.phi_of_m),
public_key (other.public_key),
private_key(other.private_key) { }
rsa_base(rsa_base&& other) noexcept : my_p (static_cast<my_uintwide_t&& >(other.my_p)),
my_q (static_cast<my_uintwide_t&& >(other.my_q)),
my_r (static_cast<my_uintwide_t&& >(other.my_r)),
my_m (static_cast<my_uintwide_t&& >(other.my_m)),
phi_of_m (static_cast<my_uintwide_t&& >(other.phi_of_m)),
public_key (static_cast<public_key_type&& >(other.public_key)),
private_key(static_cast<private_key_type&&>(other.private_key)) { }
auto operator=(const rsa_base& other) -> rsa_base&
{
if(this != &other)
{
my_p = other.my_p;
my_q = other.my_q;
my_r = other.my_r;
my_m = other.my_m;
phi_of_m = other.phi_of_m;
public_key = other.public_key;
private_key = other.private_key;
}
return *this;
}
auto operator=(rsa_base&& other) noexcept -> rsa_base&
{
my_p = static_cast<my_uintwide_t&& >(other.my_p);
my_q = static_cast<my_uintwide_t&& >(other.my_q);
my_r = static_cast<my_uintwide_t&& >(other.my_r);
my_m = static_cast<my_uintwide_t&& >(other.my_m);
phi_of_m = static_cast<my_uintwide_t&& >(other.phi_of_m);
public_key = static_cast<public_key_type&& >(other.public_key);
private_key = static_cast<private_key_type&&>(other.private_key);
return *this;
}
WIDE_INTEGER_NODISCARD auto getPublicKey () const -> const public_key_type& { return public_key; } // NOLINT(readability-identifier-naming)
WIDE_INTEGER_NODISCARD auto getPrivateKey() const -> const private_key_type& { return private_key; } // NOLINT(readability-identifier-naming)
WIDE_INTEGER_NODISCARD auto get_p() const -> const my_uintwide_t& { return getPrivateKey().p; }
WIDE_INTEGER_NODISCARD auto get_q() const -> const my_uintwide_t& { return getPrivateKey().q; }
WIDE_INTEGER_NODISCARD auto get_d() const -> const my_uintwide_t& { return getPrivateKey().s; }
WIDE_INTEGER_NODISCARD auto get_n() const -> const my_uintwide_t& { return getPublicKey().m; }
WIDE_INTEGER_NODISCARD auto encrypt(const std::string& str) const -> my_uintwide_t
{
return encryptor(public_key).encrypt(str);
} // LCOV_EXCL_LINE
WIDE_INTEGER_NODISCARD auto decrypt(const my_uintwide_t& cry_in) const -> std::string
{
return decryptor(private_key).decrypt(cry_in);
}
template<typename RandomEngineType = std::minstd_rand>
static auto is_prime(const my_uintwide_t& p,
const RandomEngineType& generator = RandomEngineType(util::util_pseudorandom_time_point_seed::value<typename RandomEngineType::result_type>())) -> bool
{
#if defined(WIDE_INTEGER_NAMESPACE)
using local_distribution_type =
WIDE_INTEGER_NAMESPACE::math::wide_integer::uniform_int_distribution<WIDE_INTEGER_NAMESPACE::math::wide_integer::size_t(bit_count), limb_type, allocator_type>;
#else
using local_distribution_type =
::math::wide_integer::uniform_int_distribution<static_cast<math::wide_integer::size_t>(bit_count), limb_type, allocator_type>;
#endif
local_distribution_type distribution;
RandomEngineType local_generator(generator);
const bool miller_rabin_result_is_ok = miller_rabin(p, 25U, distribution, local_generator);
return miller_rabin_result_is_ok;
}
rsa_base() = delete;
protected:
my_uintwide_t my_p; // NOLINT(cppcoreguidelines-non-private-member-variables-in-classes,misc-non-private-member-variables-in-classes,readability-identifier-naming)
my_uintwide_t my_q; // NOLINT(cppcoreguidelines-non-private-member-variables-in-classes,misc-non-private-member-variables-in-classes,readability-identifier-naming)
my_uintwide_t my_r; // NOLINT(cppcoreguidelines-non-private-member-variables-in-classes,misc-non-private-member-variables-in-classes,readability-identifier-naming)
my_uintwide_t my_m; // NOLINT(cppcoreguidelines-non-private-member-variables-in-classes,misc-non-private-member-variables-in-classes,readability-identifier-naming)
my_uintwide_t phi_of_m { }; // NOLINT(cppcoreguidelines-non-private-member-variables-in-classes,misc-non-private-member-variables-in-classes,readability-identifier-naming)
public_key_type public_key { }; // NOLINT(cppcoreguidelines-non-private-member-variables-in-classes,misc-non-private-member-variables-in-classes,readability-identifier-naming)
private_key_type private_key { }; // NOLINT(cppcoreguidelines-non-private-member-variables-in-classes,misc-non-private-member-variables-in-classes,readability-identifier-naming)
rsa_base(my_uintwide_t p_in,
my_uintwide_t q_in,
my_uintwide_t r_in) : my_p(std::move(p_in)),
my_q(std::move(q_in)),
my_r(std::move(r_in)),
my_m(my_p * my_q)
{
public_key = public_key_type { my_r, my_m }; // NOLINT(cppcoreguidelines-prefer-member-initializer)
}
auto calculate_private_key() -> void
{
my_uintwide_t a { phi_of_m };
my_uintwide_t b { my_r };
my_uintwide_t x { };
my_uintwide_t s { };
euclidean::extended_euclidean(a, b, &x, &s);
if(is_neg(s))
{
s = std::move(make_positive(s, phi_of_m));
}
private_key = std::move( private_key_type { std::move(s), my_p, my_q } );
}
private:
static auto is_neg(const my_uintwide_t& x) -> bool
{
const bool x_is_neg = ((x & (my_uintwide_t(1U) << (std::numeric_limits<my_uintwide_t>::digits - 1))) != 0);
return x_is_neg;
}
static auto make_positive(const my_uintwide_t& number, const my_uintwide_t& modulus) -> my_uintwide_t // NOLINT(bugprone-easily-swappable-parameters)
{
my_uintwide_t tmp { number };
while(is_neg(tmp)) // NOLINT(altera-id-dependent-backward-branch)
{
tmp += modulus;
}
return tmp;
}
};
template<const std::size_t RsaBitCount,
#if defined(WIDE_INTEGER_NAMESPACE)
typename LimbType = WIDE_INTEGER_NAMESPACE::math::wide_integer::uint_defaultlimb_t>
#else
typename LimbType = ::math::wide_integer::uint_defaultlimb_t>
#endif
class rsa_fips : public rsa_base<RsaBitCount, LimbType>
{
private:
using base_class_type = rsa_base<RsaBitCount, LimbType>;
public:
rsa_fips(const typename base_class_type::my_uintwide_t& p_in,
const typename base_class_type::my_uintwide_t& q_in,
const typename base_class_type::my_uintwide_t& r_in)
: base_class_type(p_in, q_in, r_in)
{
const typename base_class_type::my_uintwide_t my_one(1U);
base_class_type::phi_of_m = lcm(base_class_type::my_p - my_one,
base_class_type::my_q - my_one);
base_class_type::calculate_private_key();
}
rsa_fips(const rsa_fips& other) : base_class_type(other) { }
rsa_fips(rsa_fips&& other) noexcept : base_class_type(other) { }
~rsa_fips() override = default;
auto operator=(const rsa_fips& other) -> rsa_fips& // NOLINT(cert-oop54-cpp)
{
static_cast<void>(base_class_type::operator=(other));
return *this;
}
auto operator=(rsa_fips&& other) noexcept -> rsa_fips&
{
static_cast<void>(base_class_type::operator=(other));
return *this;
}
};
template<const std::size_t RsaBitCount,
#if defined(WIDE_INTEGER_NAMESPACE)
typename LimbType = WIDE_INTEGER_NAMESPACE::math::wide_integer::uint_defaultlimb_t>
#else
typename LimbType = ::math::wide_integer::uint_defaultlimb_t>
#endif
class rsa_traditional : public rsa_base<RsaBitCount, LimbType>
{
private:
using base_class_type = rsa_base<RsaBitCount, LimbType>;
public:
rsa_traditional(const typename base_class_type::my_uintwide_t& p_in,
const typename base_class_type::my_uintwide_t& q_in,
const typename base_class_type::my_uintwide_t& r_in)
: base_class_type(p_in, q_in, r_in)
{
const typename base_class_type::my_uintwide_t my_one(1U);
base_class_type::phi_of_m = ( (base_class_type::my_p - my_one)
* (base_class_type::my_q - my_one));
base_class_type::calculate_private_key();
}
rsa_traditional(const rsa_traditional& other) : base_class_type(other) { }
rsa_traditional(rsa_traditional&& other) noexcept : base_class_type(other) { }
virtual ~rsa_traditional() = default;
auto operator=(const rsa_traditional& other) -> rsa_traditional& // NOLINT(cert-oop54-cpp)
{
static_cast<void>(base_class_type::operator=(other));
return *this;
}
auto operator=(rsa_traditional&& other) noexcept -> rsa_traditional&
{
static_cast<void>(base_class_type::operator=(other));
return *this;
}
};
} // namespace local_rsa
#if defined(WIDE_INTEGER_NAMESPACE)
auto WIDE_INTEGER_NAMESPACE::math::wide_integer::example012_rsa_crypto() -> bool
#else
auto ::math::wide_integer::example012_rsa_crypto() -> bool
#endif
{
// Consider lines 25-30 in the file "KeyGen_186-3.rsp".
// e = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000001
// seed = e5f707e49c4e7cc8fb202b5cd957963713f1c4726677c09b6a7f5dfe
// p = ff03b1a74827c746db83d2eaff00067622f545b62584321256e62b01509f10962f9c5c8fd0b7f5184a9ce8e81f439df47dda14563dd55a221799d2aa57ed2713271678a5a0b8b40a84ad13d5b6e6599e6467c670109cf1f45ccfed8f75ea3b814548ab294626fe4d14ff764dd8b091f11a0943a2dd2b983b0df02f4c4d00b413
// q = dacaabc1dc57faa9fd6a4274c4d588765a1d3311c22e57d8101431b07eb3ddcb05d77d9a742ac2322fe6a063bd1e05acb13b0fe91c70115c2b1eee1155e072527011a5f849de7072a1ce8e6b71db525fbcda7a89aaed46d27aca5eaeaf35a26270a4a833c5cda681ffd49baa0f610bad100cdf47cc86e5034e2a0b2179e04ec7
// n = d9f3094b36634c05a02ae1a5569035107a48029e39b3c6a1853817f063e18e761c0c538e55ff2c7e53d603bb35cabb3b8d07f82aa0afdeaf7441fcf6746c5bcaaa2cde398ad73edb9c340c3ffca559132581eaf8f65c13d02f3445a932a3e1fadb5912f7553edec5047e4d0ed06ee87effc549e194d38e06b73a971c961688ba2d4aa4f450d2523372f317d41d06f9f0360e962ce953a69f36c53c370799fcfba195e8f691ebe862f84ae4bbd7747bc14499bd0efffcdc7154325908355c2ffc5b3948b8102b33aa2420381470e4ee858380ff0eea58288516c263f6d51dbbd0e477d1393a0a3ee60e1fde4330856665bf522006608a6104c138c0f39e09c4c5
// d = 1bf009caddc664b4404d59711fde16d7c55822449de1c5a084d22ed5791fdaa37ea538867fc91a17e6856e277c2dedd70ca8bf6ec44b0e729917a88e5988cc561d948ddeea46e21fd8ff46cce7657c94bfb1bdf40b3b30d4595a8bc3a15f1d4ad4c665c09b3b265ba19cdb0b89cbaadd0097ff52e9f6e594f86829c5bb4e9ba0200f12fa6dc60fd28dec0d194f08deb50f5a7749540160d6e8338e75b11165b76f4650c2fcce08f979ad9941daedaa5e328473bf712f8f549c36967f5e15477dc643d1f48d563139134e5cdc4bb84f9782cd5125e864e067cb980290f215cb41090e297bac2714efba61115d85613851c2de50a82f4ab526b88c61b7c9a0b589
using rsa_type = local_rsa::rsa_fips<static_cast<std::size_t>(UINT32_C(2048))>;
using rsa_integral_type = typename rsa_type::my_uintwide_t;
const rsa_integral_type p("0xFF03B1A74827C746DB83D2EAFF00067622F545B62584321256E62B01509F10962F9C5C8FD0B7F5184A9CE8E81F439DF47DDA14563DD55A221799D2AA57ED2713271678A5A0B8B40A84AD13D5B6E6599E6467C670109CF1F45CCFED8F75EA3B814548AB294626FE4D14FF764DD8B091F11A0943A2DD2B983B0DF02F4C4D00B413");
const rsa_integral_type q("0xDACAABC1DC57FAA9FD6A4274C4D588765A1D3311C22E57D8101431B07EB3DDCB05D77D9A742AC2322FE6A063BD1E05ACB13B0FE91C70115C2B1EEE1155E072527011A5F849DE7072A1CE8E6B71DB525FBCDA7A89AAED46D27ACA5EAEAF35A26270A4A833C5CDA681FFD49BAA0F610BAD100CDF47CC86E5034E2A0B2179E04EC7");
const rsa_integral_type e("0x100000001");
const rsa_integral_type n("0xD9F3094B36634C05A02AE1A5569035107A48029E39B3C6A1853817F063E18E761C0C538E55FF2C7E53D603BB35CABB3B8D07F82AA0AFDEAF7441FCF6746C5BCAAA2CDE398AD73EDB9C340C3FFCA559132581EAF8F65C13D02F3445A932A3E1FADB5912F7553EDEC5047E4D0ED06EE87EFFC549E194D38E06B73A971C961688BA2D4AA4F450D2523372F317D41D06F9F0360E962CE953A69F36C53C370799FCFBA195E8F691EBE862F84AE4BBD7747BC14499BD0EFFFCDC7154325908355C2FFC5B3948B8102B33AA2420381470E4EE858380FF0EEA58288516C263F6D51DBBD0E477D1393A0A3EE60E1FDE4330856665BF522006608A6104C138C0F39E09C4C5");
const rsa_integral_type d("0x1BF009CADDC664B4404D59711FDE16D7C55822449DE1C5A084D22ED5791FDAA37EA538867FC91A17E6856E277C2DEDD70CA8BF6EC44B0E729917A88E5988CC561D948DDEEA46E21FD8FF46CCE7657C94BFB1BDF40B3B30D4595A8BC3A15F1D4AD4C665C09B3B265BA19CDB0B89CBAADD0097FF52E9F6E594F86829C5BB4E9BA0200F12FA6DC60FD28DEC0D194F08DEB50F5A7749540160D6E8338E75B11165B76F4650C2FCCE08F979AD9941DAEDAA5E328473BF712F8F549C36967F5E15477DC643D1F48D563139134E5CDC4BB84F9782CD5125E864E067CB980290F215CB41090E297BAC2714EFBA61115D85613851C2DE50A82F4AB526B88C61B7C9A0B589");
bool result_is_ok = true;
{
using local_random_engine_type = std::mt19937;
local_random_engine_type generator(::util::util_pseudorandom_time_point_seed::value<typename std::mt19937::result_type>());
const bool p_is_prime = rsa_type::is_prime(p, generator);
result_is_ok = (p_is_prime && result_is_ok);
}
result_is_ok = (rsa_type::is_prime(q) && result_is_ok);
const rsa_type rsa(p, q, e);
result_is_ok = (( (rsa.get_p() == p)
&& (rsa.get_q() == q)
&& (rsa.get_d() == d)) && result_is_ok);
result_is_ok = ((n == (p * q)) && result_is_ok);
result_is_ok = ((n == rsa.get_n()) && result_is_ok);
// Select a short, relevant string as the sample message to encrypt.
const std::string message_in { "Hello wide-integer RSA" };
const rsa_type::my_uintwide_t cipher_text { rsa.encrypt(message_in) };
const std::string msg_recover { rsa.decrypt(cipher_text) };
result_is_ok = ((msg_recover == message_in) && result_is_ok);
return result_is_ok;
}
// Enable this if you would like to activate this main() as a standalone example.
#if defined(WIDE_INTEGER_STANDALONE_EXAMPLE012_RSA_CRYPTO)
#include <iomanip>
#include <iostream>
auto main() -> int
{
#if defined(WIDE_INTEGER_NAMESPACE)
const auto result_is_ok = WIDE_INTEGER_NAMESPACE::math::wide_integer::example012_rsa_crypto();
#else
const auto result_is_ok = ::math::wide_integer::example012_rsa_crypto();
#endif
std::cout << "result_is_ok: " << std::boolalpha << result_is_ok << std::endl;
return (result_is_ok ? 0 : -1);
}
#endif