Coverage Report

Created: 2020-11-21 08:34

/src/botan/build/include/botan/internal/ed25519_internal.h
Line
Count
Source
1
/*
2
* Ed25519
3
* (C) 2017 Ribose Inc
4
*
5
* Based on the public domain code from SUPERCOP ref10 by
6
* Peter Schwabe, Daniel J. Bernstein, Niels Duif, Tanja Lange, Bo-Yin Yang
7
*
8
* Botan is released under the Simplified BSD License (see license.txt)
9
*/
10
11
#ifndef BOTAN_ED25519_INT_H_
12
#define BOTAN_ED25519_INT_H_
13
14
#include <botan/internal/ed25519_fe.h>
15
#include <botan/internal/loadstor.h>
16
17
namespace Botan {
18
19
inline uint64_t load_3(const uint8_t in[3])
20
1.44k
   {
21
1.44k
   return static_cast<uint64_t>(in[0]) |
22
1.44k
      (static_cast<uint64_t>(in[1]) << 8) |
23
1.44k
      (static_cast<uint64_t>(in[2]) << 16);
24
1.44k
   }
25
26
inline uint64_t load_4(const uint8_t* in)
27
1.12k
   {
28
1.12k
   return load_le<uint32_t>(in, 0);
29
1.12k
   }
30
31
template<size_t S, int64_t MUL=1>
32
inline void carry(int64_t& h0, int64_t& h1)
33
2.59M
   {
34
2.59M
   static_assert(S > 0 && S < 64, "Shift in range");
35
36
2.59M
   const int64_t X1 = (static_cast<int64_t>(1) << S);
37
2.59M
   const int64_t X2 = (static_cast<int64_t>(1) << (S - 1));
38
2.59M
   int64_t c = (h0 + X2)  >> S;
39
2.59M
   h1 += c * MUL;
40
2.59M
   h0 -= c * X1;
41
2.59M
   }
void Botan::carry<21ul, 1l>(long&, long&)
Line
Count
Source
33
1.72k
   {
34
1.72k
   static_assert(S > 0 && S < 64, "Shift in range");
35
36
1.72k
   const int64_t X1 = (static_cast<int64_t>(1) << S);
37
1.72k
   const int64_t X2 = (static_cast<int64_t>(1) << (S - 1));
38
1.72k
   int64_t c = (h0 + X2)  >> S;
39
1.72k
   h1 += c * MUL;
40
1.72k
   h0 -= c * X1;
41
1.72k
   }
void Botan::carry<26ul, 1l>(long&, long&)
Line
Count
Source
33
1.51M
   {
34
1.51M
   static_assert(S > 0 && S < 64, "Shift in range");
35
36
1.51M
   const int64_t X1 = (static_cast<int64_t>(1) << S);
37
1.51M
   const int64_t X2 = (static_cast<int64_t>(1) << (S - 1));
38
1.51M
   int64_t c = (h0 + X2)  >> S;
39
1.51M
   h1 += c * MUL;
40
1.51M
   h0 -= c * X1;
41
1.51M
   }
void Botan::carry<25ul, 1l>(long&, long&)
Line
Count
Source
33
865k
   {
34
865k
   static_assert(S > 0 && S < 64, "Shift in range");
35
36
865k
   const int64_t X1 = (static_cast<int64_t>(1) << S);
37
865k
   const int64_t X2 = (static_cast<int64_t>(1) << (S - 1));
38
865k
   int64_t c = (h0 + X2)  >> S;
39
865k
   h1 += c * MUL;
40
865k
   h0 -= c * X1;
41
865k
   }
void Botan::carry<25ul, 19l>(long&, long&)
Line
Count
Source
33
216k
   {
34
216k
   static_assert(S > 0 && S < 64, "Shift in range");
35
36
216k
   const int64_t X1 = (static_cast<int64_t>(1) << S);
37
216k
   const int64_t X2 = (static_cast<int64_t>(1) << (S - 1));
38
216k
   int64_t c = (h0 + X2)  >> S;
39
216k
   h1 += c * MUL;
40
216k
   h0 -= c * X1;
41
216k
   }
42
43
template<size_t S>
44
inline void carry0(int64_t& h0, int64_t& h1)
45
1.80k
   {
46
1.80k
   static_assert(S > 0 && S < 64, "Shift in range");
47
48
1.80k
   const int64_t X1 = (static_cast<int64_t>(1) << S);
49
1.80k
   int64_t c = h0 >> S;
50
1.80k
   h1 += c;
51
1.80k
   h0 -= c * X1;
52
1.80k
   }
53
54
template<size_t S>
55
inline void carry0(int32_t& h0, int32_t& h1)
56
3.05k
   {
57
3.05k
   static_assert(S > 0 && S < 32, "Shift in range");
58
59
3.05k
   const int32_t X1 = (static_cast<int64_t>(1) << S);
60
3.05k
   int32_t c = h0 >> S;
61
3.05k
   h1 += c;
62
3.05k
   h0 -= c * X1;
63
3.05k
   }
void Botan::carry0<26ul>(int&, int&)
Line
Count
Source
56
1.69k
   {
57
1.69k
   static_assert(S > 0 && S < 32, "Shift in range");
58
59
1.69k
   const int32_t X1 = (static_cast<int64_t>(1) << S);
60
1.69k
   int32_t c = h0 >> S;
61
1.69k
   h1 += c;
62
1.69k
   h0 -= c * X1;
63
1.69k
   }
void Botan::carry0<25ul>(int&, int&)
Line
Count
Source
56
1.35k
   {
57
1.35k
   static_assert(S > 0 && S < 32, "Shift in range");
58
59
1.35k
   const int32_t X1 = (static_cast<int64_t>(1) << S);
60
1.35k
   int32_t c = h0 >> S;
61
1.35k
   h1 += c;
62
1.35k
   h0 -= c * X1;
63
1.35k
   }
64
65
inline void redc_mul(int64_t& s1,
66
                     int64_t& s2,
67
                     int64_t& s3,
68
                     int64_t& s4,
69
                     int64_t& s5,
70
                     int64_t& s6,
71
                     int64_t& X)
72
1.05k
   {
73
1.05k
   s1 += X * 666643;
74
1.05k
   s2 += X * 470296;
75
1.05k
   s3 += X * 654183;
76
1.05k
   s4 -= X * 997805;
77
1.05k
   s5 += X * 136657;
78
1.05k
   s6 -= X * 683901;
79
1.05k
   X = 0;
80
1.05k
   }
81
82
/*
83
ge means group element.
84
85
Here the group is the set of pairs (x,y) of field elements (see fe.h)
86
satisfying -x^2 + y^2 = 1 + d x^2y^2
87
where d = -121665/121666.
88
89
Representations:
90
  ge_p3 (extended): (X:Y:Z:T) satisfying x=X/Z, y=Y/Z, XY=ZT
91
*/
92
93
typedef struct
94
   {
95
   fe X;
96
   fe Y;
97
   fe Z;
98
   fe T;
99
   } ge_p3;
100
101
int ge_frombytes_negate_vartime(ge_p3*, const uint8_t*);
102
void ge_scalarmult_base(uint8_t out[32], const uint8_t in[32]);
103
104
void ge_double_scalarmult_vartime(uint8_t out[32],
105
                                  const uint8_t a[],
106
                                  const ge_p3* A,
107
                                  const uint8_t b[]);
108
109
/*
110
The set of scalars is \Z/l
111
where l = 2^252 + 27742317777372353535851937790883648493.
112
*/
113
114
void sc_reduce(uint8_t*);
115
void sc_muladd(uint8_t*, const uint8_t*, const uint8_t*, const uint8_t*);
116
117
}
118
119
#endif