• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

randombit / botan / 21753596263

06 Feb 2026 02:13PM UTC coverage: 90.063% (-0.01%) from 90.073%
21753596263

Pull #5289

github

web-flow
Merge 587099284 into 8ea0ca252
Pull Request #5289: Further misc header reductions, forward declarations, etc

102237 of 113517 relevant lines covered (90.06%)

11402137.11 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

82.95
/src/lib/misc/tss/tss.cpp
1
/*
2
* RTSS (threshold secret sharing)
3
* (C) 2009,2018 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7

8
#include <botan/tss.h>
9

10
#include <botan/exceptn.h>
11
#include <botan/hash.h>
12
#include <botan/hex.h>
13
#include <botan/rng.h>
14
#include <botan/internal/ct_utils.h>
15
#include <botan/internal/loadstor.h>
16

17
namespace Botan {
18

19
namespace {
20

21
const size_t RTSS_HEADER_SIZE = 20;
22

23
/**
24
Table for GF(2^8) arithmetic (exponentials)
25
*/
26
alignas(64) const uint8_t RTSS_EXP[256] = {
27
   0x01, 0x03, 0x05, 0x0F, 0x11, 0x33, 0x55, 0xFF, 0x1A, 0x2E, 0x72, 0x96, 0xA1, 0xF8, 0x13, 0x35, 0x5F, 0xE1, 0x38,
28
   0x48, 0xD8, 0x73, 0x95, 0xA4, 0xF7, 0x02, 0x06, 0x0A, 0x1E, 0x22, 0x66, 0xAA, 0xE5, 0x34, 0x5C, 0xE4, 0x37, 0x59,
29
   0xEB, 0x26, 0x6A, 0xBE, 0xD9, 0x70, 0x90, 0xAB, 0xE6, 0x31, 0x53, 0xF5, 0x04, 0x0C, 0x14, 0x3C, 0x44, 0xCC, 0x4F,
30
   0xD1, 0x68, 0xB8, 0xD3, 0x6E, 0xB2, 0xCD, 0x4C, 0xD4, 0x67, 0xA9, 0xE0, 0x3B, 0x4D, 0xD7, 0x62, 0xA6, 0xF1, 0x08,
31
   0x18, 0x28, 0x78, 0x88, 0x83, 0x9E, 0xB9, 0xD0, 0x6B, 0xBD, 0xDC, 0x7F, 0x81, 0x98, 0xB3, 0xCE, 0x49, 0xDB, 0x76,
32
   0x9A, 0xB5, 0xC4, 0x57, 0xF9, 0x10, 0x30, 0x50, 0xF0, 0x0B, 0x1D, 0x27, 0x69, 0xBB, 0xD6, 0x61, 0xA3, 0xFE, 0x19,
33
   0x2B, 0x7D, 0x87, 0x92, 0xAD, 0xEC, 0x2F, 0x71, 0x93, 0xAE, 0xE9, 0x20, 0x60, 0xA0, 0xFB, 0x16, 0x3A, 0x4E, 0xD2,
34
   0x6D, 0xB7, 0xC2, 0x5D, 0xE7, 0x32, 0x56, 0xFA, 0x15, 0x3F, 0x41, 0xC3, 0x5E, 0xE2, 0x3D, 0x47, 0xC9, 0x40, 0xC0,
35
   0x5B, 0xED, 0x2C, 0x74, 0x9C, 0xBF, 0xDA, 0x75, 0x9F, 0xBA, 0xD5, 0x64, 0xAC, 0xEF, 0x2A, 0x7E, 0x82, 0x9D, 0xBC,
36
   0xDF, 0x7A, 0x8E, 0x89, 0x80, 0x9B, 0xB6, 0xC1, 0x58, 0xE8, 0x23, 0x65, 0xAF, 0xEA, 0x25, 0x6F, 0xB1, 0xC8, 0x43,
37
   0xC5, 0x54, 0xFC, 0x1F, 0x21, 0x63, 0xA5, 0xF4, 0x07, 0x09, 0x1B, 0x2D, 0x77, 0x99, 0xB0, 0xCB, 0x46, 0xCA, 0x45,
38
   0xCF, 0x4A, 0xDE, 0x79, 0x8B, 0x86, 0x91, 0xA8, 0xE3, 0x3E, 0x42, 0xC6, 0x51, 0xF3, 0x0E, 0x12, 0x36, 0x5A, 0xEE,
39
   0x29, 0x7B, 0x8D, 0x8C, 0x8F, 0x8A, 0x85, 0x94, 0xA7, 0xF2, 0x0D, 0x17, 0x39, 0x4B, 0xDD, 0x7C, 0x84, 0x97, 0xA2,
40
   0xFD, 0x1C, 0x24, 0x6C, 0xB4, 0xC7, 0x52, 0xF6, 0x01};
41

42
/**
43
Table for GF(2^8) arithmetic (logarithms)
44
*/
45
alignas(64) const uint8_t RTSS_LOG[] = {
46
   0x90, 0x00, 0x19, 0x01, 0x32, 0x02, 0x1A, 0xC6, 0x4B, 0xC7, 0x1B, 0x68, 0x33, 0xEE, 0xDF, 0x03, 0x64, 0x04, 0xE0,
47
   0x0E, 0x34, 0x8D, 0x81, 0xEF, 0x4C, 0x71, 0x08, 0xC8, 0xF8, 0x69, 0x1C, 0xC1, 0x7D, 0xC2, 0x1D, 0xB5, 0xF9, 0xB9,
48
   0x27, 0x6A, 0x4D, 0xE4, 0xA6, 0x72, 0x9A, 0xC9, 0x09, 0x78, 0x65, 0x2F, 0x8A, 0x05, 0x21, 0x0F, 0xE1, 0x24, 0x12,
49
   0xF0, 0x82, 0x45, 0x35, 0x93, 0xDA, 0x8E, 0x96, 0x8F, 0xDB, 0xBD, 0x36, 0xD0, 0xCE, 0x94, 0x13, 0x5C, 0xD2, 0xF1,
50
   0x40, 0x46, 0x83, 0x38, 0x66, 0xDD, 0xFD, 0x30, 0xBF, 0x06, 0x8B, 0x62, 0xB3, 0x25, 0xE2, 0x98, 0x22, 0x88, 0x91,
51
   0x10, 0x7E, 0x6E, 0x48, 0xC3, 0xA3, 0xB6, 0x1E, 0x42, 0x3A, 0x6B, 0x28, 0x54, 0xFA, 0x85, 0x3D, 0xBA, 0x2B, 0x79,
52
   0x0A, 0x15, 0x9B, 0x9F, 0x5E, 0xCA, 0x4E, 0xD4, 0xAC, 0xE5, 0xF3, 0x73, 0xA7, 0x57, 0xAF, 0x58, 0xA8, 0x50, 0xF4,
53
   0xEA, 0xD6, 0x74, 0x4F, 0xAE, 0xE9, 0xD5, 0xE7, 0xE6, 0xAD, 0xE8, 0x2C, 0xD7, 0x75, 0x7A, 0xEB, 0x16, 0x0B, 0xF5,
54
   0x59, 0xCB, 0x5F, 0xB0, 0x9C, 0xA9, 0x51, 0xA0, 0x7F, 0x0C, 0xF6, 0x6F, 0x17, 0xC4, 0x49, 0xEC, 0xD8, 0x43, 0x1F,
55
   0x2D, 0xA4, 0x76, 0x7B, 0xB7, 0xCC, 0xBB, 0x3E, 0x5A, 0xFB, 0x60, 0xB1, 0x86, 0x3B, 0x52, 0xA1, 0x6C, 0xAA, 0x55,
56
   0x29, 0x9D, 0x97, 0xB2, 0x87, 0x90, 0x61, 0xBE, 0xDC, 0xFC, 0xBC, 0x95, 0xCF, 0xCD, 0x37, 0x3F, 0x5B, 0xD1, 0x53,
57
   0x39, 0x84, 0x3C, 0x41, 0xA2, 0x6D, 0x47, 0x14, 0x2A, 0x9E, 0x5D, 0x56, 0xF2, 0xD3, 0xAB, 0x44, 0x11, 0x92, 0xD9,
58
   0x23, 0x20, 0x2E, 0x89, 0xB4, 0x7C, 0xB8, 0x26, 0x77, 0x99, 0xE3, 0xA5, 0x67, 0x4A, 0xED, 0xDE, 0xC5, 0x31, 0xFE,
59
   0x18, 0x0D, 0x63, 0x8C, 0x80, 0xC0, 0xF7, 0x70, 0x07};
60

61
uint8_t gfp_mul(uint8_t x, uint8_t y) {
29,633✔
62
   if(x == 0 || y == 0) {
3,833✔
63
      return 0;
64
   }
65
   return RTSS_EXP[(RTSS_LOG[x] + RTSS_LOG[y]) % 255];
29,606✔
66
}
67

68
uint8_t rtss_hash_id(std::string_view hash_name) {
7✔
69
   if(hash_name == "None") {
7✔
70
      return 0;
4✔
71
   } else if(hash_name == "SHA-1") {
3✔
72
      return 1;
1✔
73
   } else if(hash_name == "SHA-256") {
2✔
74
      return 2;
2✔
75
   } else {
76
      throw Invalid_Argument("RTSS only supports SHA-1 and SHA-256");
×
77
   }
78
}
79

80
std::unique_ptr<HashFunction> get_rtss_hash_by_id(uint8_t id) {
34✔
81
   if(id == 0) {
34✔
82
      return std::unique_ptr<HashFunction>();
22✔
83
   }
84
   if(id == 1) {
12✔
85
      return HashFunction::create_or_throw("SHA-1");
3✔
86
   } else if(id == 2) {
9✔
87
      return HashFunction::create_or_throw("SHA-256");
9✔
88
   } else {
89
      throw Decoding_Error("Unknown RTSS hash identifier");
×
90
   }
91
}
92

93
}  // namespace
94

95
RTSS_Share::RTSS_Share(std::string_view hex_input) {
×
96
   m_contents = hex_decode_locked(hex_input);
×
97
}
×
98

99
RTSS_Share::RTSS_Share(const uint8_t bin[], size_t len) {
27✔
100
   m_contents.assign(bin, bin + len);
27✔
101
}
27✔
102

103
uint8_t RTSS_Share::share_id() const {
43,459✔
104
   if(!initialized()) {
43,459✔
105
      throw Invalid_State("RTSS_Share::share_id not initialized");
×
106
   }
107

108
   if(m_contents.size() < RTSS_HEADER_SIZE + 1) {
43,459✔
109
      throw Decoding_Error("RTSS_Share::share_id invalid share data");
×
110
   }
111

112
   return m_contents[20];
43,459✔
113
}
114

115
std::string RTSS_Share::to_string() const {
×
116
   return hex_encode(m_contents.data(), m_contents.size());
×
117
}
118

119
std::vector<RTSS_Share> RTSS_Share::split(
×
120
   uint8_t M, uint8_t N, const uint8_t S[], uint16_t S_len, const uint8_t identifier[16], RandomNumberGenerator& rng) {
121
   return RTSS_Share::split(M, N, S, S_len, std::vector<uint8_t>(identifier, identifier + 16), "SHA-256", rng);
×
122
}
123

124
std::vector<RTSS_Share> RTSS_Share::split(uint8_t M,
7✔
125
                                          uint8_t N,
126
                                          const uint8_t S[],
127
                                          uint16_t S_len,
128
                                          const std::vector<uint8_t>& identifier,
129
                                          std::string_view hash_fn,
130
                                          RandomNumberGenerator& rng) {
131
   if(M <= 1 || N <= 1 || M > N || N >= 255) {
7✔
132
      throw Invalid_Argument("RTSS_Share::split: Invalid N or M");
×
133
   }
134

135
   if(identifier.size() > 16) {
7✔
136
      throw Invalid_Argument("RTSS_Share::split Invalid identifier size");
×
137
   }
138

139
   const uint8_t hash_id = rtss_hash_id(hash_fn);
7✔
140

141
   std::unique_ptr<HashFunction> hash;
7✔
142
   if(hash_id > 0) {
7✔
143
      hash = HashFunction::create_or_throw(hash_fn);
3✔
144
   }
145

146
   // secret = S || H(S)
147
   secure_vector<uint8_t> secret(S, S + S_len);
7✔
148
   if(hash) {
7✔
149
      secret += hash->process(S, S_len);
9✔
150
   }
151

152
   if(secret.size() >= 0xFFFE) {
7✔
153
      throw Encoding_Error("RTSS_Share::split secret too large for TSS format");
×
154
   }
155

156
   // +1 byte for the share ID
157
   const uint16_t share_len = static_cast<uint16_t>(secret.size() + 1);
7✔
158

159
   secure_vector<uint8_t> share_header(RTSS_HEADER_SIZE);
7✔
160
   copy_mem(share_header.data(), identifier.data(), identifier.size());
7✔
161
   share_header[16] = hash_id;
7✔
162
   share_header[17] = M;
7✔
163
   share_header[18] = get_byte<0>(share_len);
7✔
164
   share_header[19] = get_byte<1>(share_len);
7✔
165

166
   // Create RTSS header in each share
167
   std::vector<RTSS_Share> shares(N);
7✔
168

169
   for(uint8_t i = 0; i != N; ++i) {
46✔
170
      shares[i].m_contents.reserve(share_header.size() + share_len);
39✔
171
      shares[i].m_contents = share_header;
39✔
172
   }
173

174
   // Choose sequential values for X starting from 1
175
   for(uint8_t i = 0; i != N; ++i) {
46✔
176
      shares[i].m_contents.push_back(i + 1);
39✔
177
   }
178

179
   for(const uint8_t secret_byte : secret) {
210✔
180
      std::vector<uint8_t> coefficients(M - 1);
203✔
181
      rng.randomize(coefficients.data(), coefficients.size());
203✔
182

183
      for(uint8_t j = 0; j != N; ++j) {
1,158✔
184
         const uint8_t X = j + 1;
955✔
185

186
         uint8_t sum = secret_byte;
955✔
187
         uint8_t X_i = X;
955✔
188

189
         for(const uint8_t cb : coefficients) {
3,044✔
190
            sum ^= gfp_mul(X_i, cb);
2,089✔
191
            X_i = gfp_mul(X_i, X);
4,178✔
192
         }
193

194
         shares[j].m_contents.push_back(sum);
955✔
195
      }
196
   }
203✔
197

198
   return shares;
7✔
199
}
17✔
200

201
secure_vector<uint8_t> RTSS_Share::reconstruct(const std::vector<RTSS_Share>& shares) {
35✔
202
   if(shares.size() <= 1) {
35✔
203
      throw Decoding_Error("Insufficient shares to do TSS reconstruction");
×
204
   }
205

206
   for(size_t i = 0; i != shares.size(); ++i) {
250✔
207
      if(shares[i].size() < RTSS_HEADER_SIZE + 1) {
215✔
208
         throw Decoding_Error("Missing or malformed RTSS header");
×
209
      }
210

211
      if(shares[i].share_id() == 0) {
215✔
212
         throw Decoding_Error("Invalid (id = 0) RTSS share detected");
×
213
      }
214

215
      if(i > 0) {
215✔
216
         if(shares[i].size() != shares[0].size()) {
180✔
217
            throw Decoding_Error("Different sized RTSS shares detected");
×
218
         }
219

220
         if(!CT::is_equal(shares[0].m_contents.data(), shares[i].m_contents.data(), RTSS_HEADER_SIZE).as_bool()) {
180✔
221
            throw Decoding_Error("Different RTSS headers detected");
×
222
         }
223
      }
224
   }
225

226
   const uint8_t N = shares[0].m_contents[17];
35✔
227

228
   if(shares.size() < N) {
35✔
229
      throw Decoding_Error("Insufficient shares to do TSS reconstruction");
1✔
230
   }
231

232
   const uint16_t share_len = make_uint16(shares[0].m_contents[18], shares[0].m_contents[19]);
34✔
233

234
   const uint8_t hash_id = shares[0].m_contents[16];
34✔
235
   auto hash = get_rtss_hash_by_id(hash_id);
34✔
236
   const size_t hash_len = (hash ? hash->output_length() : 0);
34✔
237

238
   if(shares[0].size() != RTSS_HEADER_SIZE + share_len) {
34✔
239
      /*
240
      * This second (laxer) check accommodates a bug in TSS that was
241
      * fixed in 2.9.0 - previous versions used the length of the
242
      * *secret* here, instead of the length of the *share*, which is
243
      * precisely 1 + hash_len longer.
244
      */
245
      if(shares[0].size() <= RTSS_HEADER_SIZE + 1 + hash_len) {
3✔
246
         throw Decoding_Error("Bad RTSS length field in header");
×
247
      }
248
   }
249

250
   std::vector<uint8_t> V(shares.size());
35✔
251
   secure_vector<uint8_t> recovered;
34✔
252

253
   for(size_t i = RTSS_HEADER_SIZE + 1; i != shares[0].size(); ++i) {
887✔
254
      for(size_t j = 0; j != V.size(); ++j) {
4,686✔
255
         V[j] = shares[j].m_contents[i];
3,833✔
256
      }
257

258
      uint8_t r = 0;
853✔
259
      for(size_t k = 0; k != shares.size(); ++k) {
4,686✔
260
         // L_i function:
261
         uint8_t r2 = 1;
262
         for(size_t l = 0; l != shares.size(); ++l) {
29,288✔
263
            if(k == l) {
25,455✔
264
               continue;
3,833✔
265
            }
266

267
            const uint8_t share_k = shares[k].share_id();
21,622✔
268
            const uint8_t share_l = shares[l].share_id();
21,622✔
269

270
            if(share_k == share_l) {
21,622✔
271
               throw Decoding_Error("Duplicate shares found in RTSS recovery");
×
272
            }
273

274
            const uint8_t div = RTSS_EXP[(255 + RTSS_LOG[share_l] - RTSS_LOG[share_k ^ share_l]) % 255];
21,622✔
275

276
            r2 = gfp_mul(r2, div);
47,077✔
277
         }
278

279
         r ^= gfp_mul(V[k], r2);
7,656✔
280
      }
281
      recovered.push_back(r);
853✔
282
   }
283

284
   if(hash) {
34✔
285
      if(recovered.size() < hash->output_length()) {
12✔
286
         throw Decoding_Error("RTSS recovered value too short to be valid");
×
287
      }
288

289
      const size_t secret_len = recovered.size() - hash->output_length();
12✔
290

291
      hash->update(recovered.data(), secret_len);
12✔
292
      secure_vector<uint8_t> hash_check = hash->final();
12✔
293

294
      if(!CT::is_equal(hash_check.data(), &recovered[secret_len], hash->output_length()).as_bool()) {
13✔
295
         throw Decoding_Error("RTSS hash check failed");
1✔
296
      }
297

298
      // remove the trailing hash value
299
      recovered.resize(secret_len);
11✔
300
   }
12✔
301

302
   return recovered;
33✔
303
}
46✔
304

305
}  // namespace Botan
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc