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
|
/*
* (C) 2016 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "tests.h"
#if defined(BOTAN_HAS_BIGINT_MP)
#include <botan/internal/mp_core.h>
#endif
namespace Botan_Tests {
namespace {
#if defined(BOTAN_HAS_BIGINT_MP)
class MP_Unit_Tests final : public Test
{
public:
std::vector<Test::Result> run() override
{
std::vector<Test::Result> results;
results.push_back(test_cnd_swap());
results.push_back(test_cnd_add());
results.push_back(test_cnd_sub());
results.push_back(test_cnd_abs());
return results;
}
private:
Result test_cnd_add()
{
Result result("bigint_cnd_add");
const Botan::word max = Botan::MP_WORD_MAX;
Botan::word a = 2;
Botan::word c = Botan::bigint_cnd_add(0, &a, &max, 1);
result.test_int_eq(a, 2, "No op");
result.test_int_eq(c, 0, "No op");
c = Botan::bigint_cnd_add(1, &a, &max, 1);
result.test_int_eq(a, 1, "Add");
result.test_int_eq(c, 1, "Carry");
// TODO more tests
return result;
}
Result test_cnd_sub()
{
Result result("bigint_cnd_sub");
Botan::word a = 2;
Botan::word b = 3;
Botan::word c = Botan::bigint_cnd_sub(0, &a, &b, 1);
result.test_int_eq(a, 2, "No op");
result.test_int_eq(c, 0, "No op");
c = Botan::bigint_cnd_sub(1, &a, &b, 1);
result.test_int_eq(a, Botan::MP_WORD_MAX, "Sub");
result.test_int_eq(c, 1, "Borrow");
return result;
}
Result test_cnd_abs()
{
Result result("bigint_cnd_abs");
Botan::word x1 = Botan::MP_WORD_MAX;
Botan::bigint_cnd_abs(1, &x1, 1);
result.test_int_eq(x1, 1, "Abs");
x1 = 0;
Botan::bigint_cnd_abs(1, &x1, 1);
result.test_int_eq(x1, 0, "Abs");
x1 = 1;
Botan::bigint_cnd_abs(1, &x1, 1);
result.test_int_eq(x1, Botan::MP_WORD_MAX, "Abs");
x1 = 1;
Botan::bigint_cnd_abs(0, &x1, 1);
result.test_int_eq(x1, 1, "No change");
Botan::word x2[2] = { Botan::MP_WORD_MAX, Botan::MP_WORD_MAX };
Botan::bigint_cnd_abs(1, x2, 2);
result.test_int_eq(x2[0], 1, "Abs");
result.test_int_eq(x2[1], 0, "Abs");
return result;
}
Result test_cnd_swap()
{
Result result("bigint_cnd_swap");
// null with zero length is ok
Botan::bigint_cnd_swap(0, nullptr, nullptr, 0);
Botan::bigint_cnd_swap(1, nullptr, nullptr, 0);
Botan::word x1 = 5, y1 = 9;
Botan::bigint_cnd_swap(0, &x1, &y1, 1);
result.test_int_eq(x1, 5, "No swap");
Botan::bigint_cnd_swap(1, &x1, &y1, 1);
result.test_int_eq(x1, 9, "Swap");
Botan::word x5[5] = { 0, 1, 2, 3, 4 };
Botan::word y5[5] = { 3, 2, 1, 0, 9 };
// Should only modify first four
Botan::bigint_cnd_swap(1, x5, y5, 4);
for(size_t i = 0; i != 4; ++i)
{
result.test_int_eq(x5[i], 3 - i, "Swap x5");
}
result.test_int_eq(x5[4], 4, "Not touched");
for(size_t i = 0; i != 4; ++i)
{
result.test_int_eq(y5[i], i, "Swap y5");
}
result.test_int_eq(y5[4], 9, "Not touched");
return result;
}
};
BOTAN_REGISTER_TEST("mp_unit", MP_Unit_Tests);
#endif
}
}
|