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
|
/*
* A minimal 128-bit integer type for curve25519-donna
* (C) 2014 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_CURVE25519_DONNA128_H__
#define BOTAN_CURVE25519_DONNA128_H__
#include <botan/mul128.h>
namespace Botan {
class donna128
{
public:
donna128(u64bit ll = 0, u64bit hh = 0) { l = ll; h = hh; }
donna128(const donna128&) = default;
donna128& operator=(const donna128&) = default;
friend donna128 operator>>(const donna128& x, size_t shift)
{
donna128 z = x;
const u64bit carry = z.h << (64 - shift);
z.h = (z.h >> shift);
z.l = (z.l >> shift) | carry;
return z;
}
friend donna128 operator<<(const donna128& x, size_t shift)
{
donna128 z = x;
const u64bit carry = z.l >> (64 - shift);
z.l = (z.l << shift);
z.h = (z.h << shift) | carry;
return z;
}
friend u64bit operator&(const donna128& x, u64bit mask)
{
return x.l & mask;
}
u64bit operator&=(u64bit mask)
{
h = 0;
l &= mask;
return l;
}
donna128& operator+=(const donna128& x)
{
l += x.l;
h += (l < x.l);
h += x.h;
return *this;
}
donna128& operator+=(u64bit x)
{
l += x;
h += (l < x);
return *this;
}
u64bit lo() const { return l; }
u64bit hi() const { return h; }
private:
u64bit h = 0, l = 0;
};
inline donna128 operator*(const donna128& x, u64bit y)
{
BOTAN_ASSERT(x.hi() == 0, "High 64 bits of donna128 set to zero during multiply");
u64bit lo = 0, hi = 0;
mul64x64_128(x.lo(), y, &lo, &hi);
return donna128(lo, hi);
}
inline donna128 operator+(const donna128& x, const donna128& y)
{
donna128 z = x;
z += y;
return z;
}
inline donna128 operator+(const donna128& x, u64bit y)
{
donna128 z = x;
z += y;
return z;
}
inline donna128 operator|(const donna128& x, const donna128& y)
{
return donna128(x.lo() | y.lo(), x.hi() | y.hi());
}
inline u64bit carry_shift(const donna128& a, size_t shift)
{
return (a >> shift).lo();
}
inline u64bit combine_lower(const donna128 a, size_t s1,
const donna128 b, size_t s2)
{
donna128 z = (a >> s1) | (b << s2);
return z.lo();
}
}
#endif
|