blob: 5a84852a5706e83cb386a189314427adb5cd5407 [file] [log] [blame]
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +02001/*
2 * Copyright (C) 2021 Denys Vlasenko
3 *
4 * Licensed under GPLv2, see file LICENSE in this source tree.
5 */
6#include "tls.h"
7
8#define SP_DEBUG 0
9#define FIXED_SECRET 0
10#define FIXED_PEER_PUBKEY 0
11
12#if SP_DEBUG
13# define dbg(...) fprintf(stderr, __VA_ARGS__)
14static void dump_hex(const char *fmt, const void *vp, int len)
15{
16 char hexbuf[32 * 1024 + 4];
17 const uint8_t *p = vp;
18
19 bin2hex(hexbuf, (void*)p, len)[0] = '\0';
20 dbg(fmt, hexbuf);
21}
22#else
23# define dbg(...) ((void)0)
24# define dump_hex(...) ((void)0)
25#endif
26
27#undef DIGIT_BIT
28#define DIGIT_BIT 32
29typedef int32_t sp_digit;
30
31/* The code below is taken from parts of
32 * wolfssl-3.15.3/wolfcrypt/src/sp_c32.c
33 * and heavily modified.
34 * Header comment is kept intact:
35 */
36
37/* sp.c
38 *
39 * Copyright (C) 2006-2018 wolfSSL Inc.
40 *
41 * This file is part of wolfSSL.
42 *
43 * wolfSSL is free software; you can redistribute it and/or modify
44 * it under the terms of the GNU General Public License as published by
45 * the Free Software Foundation; either version 2 of the License, or
46 * (at your option) any later version.
47 *
48 * wolfSSL is distributed in the hope that it will be useful,
49 * but WITHOUT ANY WARRANTY; without even the implied warranty of
50 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
51 * GNU General Public License for more details.
52 *
53 * You should have received a copy of the GNU General Public License
54 * along with this program; if not, write to the Free Software
55 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
56 */
57
58/* Implementation by Sean Parkinson. */
59
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +020060typedef struct sp_point {
61 sp_digit x[2 * 10];
62 sp_digit y[2 * 10];
63 sp_digit z[2 * 10];
64 int infinity;
65} sp_point;
66
67/* The modulus (prime) of the curve P256. */
68static const sp_digit p256_mod[10] = {
69 0x3ffffff,0x3ffffff,0x3ffffff,0x003ffff,0x0000000,
70 0x0000000,0x0000000,0x0000400,0x3ff0000,0x03fffff,
71};
72
73#define p256_mp_mod ((sp_digit)0x000001)
74
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +020075/* Write r as big endian to byte aray.
76 * Fixed length number of bytes written: 32
77 *
78 * r A single precision integer.
79 * a Byte array.
80 */
81static void sp_256_to_bin(sp_digit* r, uint8_t* a)
82{
Denys Vlasenko12040122021-04-26 20:24:34 +020083 int i, j, s = 0, b;
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +020084
Denys Vlasenko12040122021-04-26 20:24:34 +020085 for (i = 0; i < 9; i++) {
86 r[i+1] += r[i] >> 26;
87 r[i] &= 0x3ffffff;
88 }
89 j = 256 / 8 - 1;
90 a[j] = 0;
91 for (i = 0; i < 10 && j >= 0; i++) {
92 b = 0;
93 a[j--] |= r[i] << s; b += 8 - s;
94 if (j < 0)
95 break;
96 while (b < 26) {
97 a[j--] = r[i] >> b; b += 8;
98 if (j < 0)
99 break;
100 }
101 s = 8 - (b - 26);
102 if (j >= 0)
103 a[j] = 0;
104 if (s != 0)
105 j++;
106 }
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200107}
108
109/* Read big endian unsigned byte aray into r.
110 *
111 * r A single precision integer.
112 * a Byte array.
113 * n Number of bytes in array to read.
114 */
115static void sp_256_from_bin(sp_digit* r, int max, const uint8_t* a, int n)
116{
Denys Vlasenko12040122021-04-26 20:24:34 +0200117 int i, j = 0, s = 0;
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200118
Denys Vlasenko12040122021-04-26 20:24:34 +0200119 r[0] = 0;
120 for (i = n-1; i >= 0; i--) {
121 r[j] |= ((sp_digit)a[i]) << s;
122 if (s >= 18) {
123 r[j] &= 0x3ffffff;
124 s = 26 - s;
125 if (j + 1 >= max)
126 break;
127 r[++j] = a[i] >> s;
128 s = 8 - s;
129 }
130 else
131 s += 8;
132 }
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200133
Denys Vlasenko12040122021-04-26 20:24:34 +0200134 for (j++; j < max; j++)
135 r[j] = 0;
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200136}
137
138/* Convert a point of big-endian 32-byte x,y pair to type sp_point. */
139static void sp_256_point_from_bin2x32(sp_point* p, const uint8_t *bin2x32)
140{
Denys Vlasenko12040122021-04-26 20:24:34 +0200141 memset(p, 0, sizeof(*p));
142 /*p->infinity = 0;*/
143 sp_256_from_bin(p->x, 2 * 10, bin2x32, 32);
144 sp_256_from_bin(p->y, 2 * 10, bin2x32 + 32, 32);
145 //static const uint8_t one[1] = { 1 };
146 //sp_256_from_bin(p->z, 2 * 10, one, 1);
147 p->z[0] = 1;
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200148}
149
Denys Vlasenkob3b17132021-04-26 16:53:53 +0200150/* Compare a with b.
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200151 *
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200152 * return -ve, 0 or +ve if a is less than, equal to or greater than b
153 * respectively.
154 */
155static sp_digit sp_256_cmp_10(const sp_digit* a, const sp_digit* b)
156{
Denys Vlasenko12040122021-04-26 20:24:34 +0200157 sp_digit r;
158 int i;
159 for (i = 9; i >= 0; i--) {
160 r = a[i] - b[i];
161 if (r != 0)
162 break;
163 }
164 return r;
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200165}
166
167/* Compare two numbers to determine if they are equal.
168 *
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200169 * return 1 when equal and 0 otherwise.
170 */
171static int sp_256_cmp_equal_10(const sp_digit* a, const sp_digit* b)
172{
Denys Vlasenko12040122021-04-26 20:24:34 +0200173 return sp_256_cmp_10(a, b) == 0;
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200174}
175
Denys Vlasenko074b33b2021-04-26 14:33:38 +0200176/* Normalize the values in each word to 26 bits. */
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200177static void sp_256_norm_10(sp_digit* a)
178{
Denys Vlasenko12040122021-04-26 20:24:34 +0200179 int i;
180 for (i = 0; i < 9; i++) {
181 a[i+1] += a[i] >> 26;
182 a[i] &= 0x3ffffff;
183 }
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200184}
185
Denys Vlasenko074b33b2021-04-26 14:33:38 +0200186/* Add b to a into r. (r = a + b) */
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200187static void sp_256_add_10(sp_digit* r, const sp_digit* a, const sp_digit* b)
188{
Denys Vlasenko12040122021-04-26 20:24:34 +0200189 int i;
190 for (i = 0; i < 10; i++)
191 r[i] = a[i] + b[i];
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200192}
193
Denys Vlasenko9a40be42021-04-26 21:58:04 +0200194/* Sub b from a into r. (r = a - b) */
195static void sp_256_sub_10(sp_digit* r, const sp_digit* a, const sp_digit* b)
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200196{
Denys Vlasenko12040122021-04-26 20:24:34 +0200197 int i;
198 for (i = 0; i < 10; i++)
Denys Vlasenko9a40be42021-04-26 21:58:04 +0200199 r[i] = a[i] - b[i];
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200200}
201
Denys Vlasenko074b33b2021-04-26 14:33:38 +0200202/* Shift number left one bit. Bottom bit is lost. */
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200203static void sp_256_rshift1_10(sp_digit* r, sp_digit* a)
204{
Denys Vlasenko12040122021-04-26 20:24:34 +0200205 int i;
206 for (i = 0; i < 9; i++)
207 r[i] = ((a[i] >> 1) | (a[i + 1] << 25)) & 0x3ffffff;
208 r[9] = a[9] >> 1;
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200209}
210
Denys Vlasenkoa2bc52d2021-04-27 01:21:26 +0200211/* Mul a by scalar b and add into r. (r += a * b) */
212static void sp_256_mul_add_10(sp_digit* r, const sp_digit* a, sp_digit b)
213{
214 int64_t tb = b;
215 int64_t t = 0;
216 int i;
217
218 for (i = 0; i < 10; i++) {
219 t += (tb * a[i]) + r[i];
220 r[i] = t & 0x3ffffff;
221 t >>= 26;
222 }
223 r[10] += t;
224}
225
226/* Multiply a and b into r. (r = a * b) */
227static void sp_256_mul_10(sp_digit* r, const sp_digit* a, const sp_digit* b)
228{
229 int i, j, k;
230 int64_t c;
231
232 c = ((int64_t)a[9]) * b[9];
233 r[19] = (sp_digit)(c >> 26);
234 c = (c & 0x3ffffff) << 26;
235 for (k = 17; k >= 0; k--) {
236 for (i = 9; i >= 0; i--) {
237 j = k - i;
238 if (j >= 10)
239 break;
240 if (j < 0)
241 continue;
242 c += ((int64_t)a[i]) * b[j];
243 }
244 r[k + 2] += c >> 52;
245 r[k + 1] = (c >> 26) & 0x3ffffff;
246 c = (c & 0x3ffffff) << 26;
247 }
248 r[0] = (sp_digit)(c >> 26);
249}
250
251/* Square a and put result in r. (r = a * a) */
252static void sp_256_sqr_10(sp_digit* r, const sp_digit* a)
253{
254 int i, j, k;
255 int64_t c;
256
257 c = ((int64_t)a[9]) * a[9];
258 r[19] = (sp_digit)(c >> 26);
259 c = (c & 0x3ffffff) << 26;
260 for (k = 17; k >= 0; k--) {
261 for (i = 9; i >= 0; i--) {
262 j = k - i;
263 if (j >= 10 || i <= j)
264 break;
265 if (j < 0)
266 continue;
267 c += ((int64_t)a[i]) * a[j] * 2;
268 }
269 if (i == j)
270 c += ((int64_t)a[i]) * a[i];
271 r[k + 2] += c >> 52;
272 r[k + 1] = (c >> 26) & 0x3ffffff;
273 c = (c & 0x3ffffff) << 26;
274 }
275 r[0] = (sp_digit)(c >> 26);
276}
277
278/* Divide the number by 2 mod the modulus (prime). (r = a / 2 % m) */
279static void sp_256_div2_10(sp_digit* r, const sp_digit* a, const sp_digit* m)
280{
281 if (a[0] & 1)
282 sp_256_add_10(r, a, m);
283 sp_256_norm_10(r);
284 sp_256_rshift1_10(r, r);
285}
286
287/* Add two Montgomery form numbers (r = a + b % m) */
288static void sp_256_mont_add_10(sp_digit* r, const sp_digit* a, const sp_digit* b,
289 const sp_digit* m)
290{
291 sp_256_add_10(r, a, b);
292 sp_256_norm_10(r);
293 if ((r[9] >> 22) > 0)
294 sp_256_sub_10(r, r, m);
295 sp_256_norm_10(r);
296}
297
298/* Subtract two Montgomery form numbers (r = a - b % m) */
299static void sp_256_mont_sub_10(sp_digit* r, const sp_digit* a, const sp_digit* b,
300 const sp_digit* m)
301{
302 sp_256_sub_10(r, a, b);
303 if (r[9] >> 22)
304 sp_256_add_10(r, r, m);
305 sp_256_norm_10(r);
306}
307
308/* Double a Montgomery form number (r = a + a % m) */
309static void sp_256_mont_dbl_10(sp_digit* r, const sp_digit* a, const sp_digit* m)
310{
311 sp_256_add_10(r, a, a);
312 sp_256_norm_10(r);
313 if ((r[9] >> 22) > 0)
314 sp_256_sub_10(r, r, m);
315 sp_256_norm_10(r);
316}
317
318/* Triple a Montgomery form number (r = a + a + a % m) */
319static void sp_256_mont_tpl_10(sp_digit* r, const sp_digit* a, const sp_digit* m)
320{
321 sp_256_add_10(r, a, a);
322 sp_256_norm_10(r);
323 if ((r[9] >> 22) > 0)
324 sp_256_sub_10(r, r, m);
325 sp_256_norm_10(r);
326 sp_256_add_10(r, r, a);
327 sp_256_norm_10(r);
328 if ((r[9] >> 22) > 0)
329 sp_256_sub_10(r, r, m);
330 sp_256_norm_10(r);
331}
332
333/* Shift the result in the high 256 bits down to the bottom. */
334static void sp_256_mont_shift_10(sp_digit* r, const sp_digit* a)
335{
336 int i;
337 sp_digit n, s;
338
339 s = a[10];
340 n = a[9] >> 22;
341 for (i = 0; i < 9; i++) {
342 n += (s & 0x3ffffff) << 4;
343 r[i] = n & 0x3ffffff;
344 n >>= 26;
345 s = a[11 + i] + (s >> 26);
346 }
347 n += s << 4;
348 r[9] = n;
349 memset(&r[10], 0, sizeof(*r) * 10);
350}
351
352/* Reduce the number back to 256 bits using Montgomery reduction.
353 *
354 * a A single precision number to reduce in place.
355 * m The single precision number representing the modulus.
356 * mp The digit representing the negative inverse of m mod 2^n.
357 */
358static void sp_256_mont_reduce_10(sp_digit* a, const sp_digit* m, sp_digit mp)
359{
360 int i;
361 sp_digit mu;
362
363 if (mp != 1) {
364 for (i = 0; i < 9; i++) {
365 mu = (a[i] * mp) & 0x3ffffff;
366 sp_256_mul_add_10(a+i, m, mu);
367 a[i+1] += a[i] >> 26;
368 }
369 mu = (a[i] * mp) & 0x3fffffl;
370 sp_256_mul_add_10(a+i, m, mu);
371 a[i+1] += a[i] >> 26;
372 a[i] &= 0x3ffffff;
373 }
374 else {
375 for (i = 0; i < 9; i++) {
376 mu = a[i] & 0x3ffffff;
377 sp_256_mul_add_10(a+i, p256_mod, mu);
378 a[i+1] += a[i] >> 26;
379 }
380 mu = a[i] & 0x3fffffl;
381 sp_256_mul_add_10(a+i, p256_mod, mu);
382 a[i+1] += a[i] >> 26;
383 a[i] &= 0x3ffffff;
384 }
385
386 sp_256_mont_shift_10(a, a);
387 if ((a[9] >> 22) > 0)
388 sp_256_sub_10(a, a, m);
389 sp_256_norm_10(a);
390}
391
392/* Multiply two Montogmery form numbers mod the modulus (prime).
393 * (r = a * b mod m)
394 *
395 * r Result of multiplication.
396 * a First number to multiply in Montogmery form.
397 * b Second number to multiply in Montogmery form.
398 * m Modulus (prime).
399 * mp Montogmery mulitplier.
400 */
401static void sp_256_mont_mul_10(sp_digit* r, const sp_digit* a, const sp_digit* b,
402 const sp_digit* m, sp_digit mp)
403{
404 sp_256_mul_10(r, a, b);
405 sp_256_mont_reduce_10(r, m, mp);
406}
407
408/* Square the Montgomery form number. (r = a * a mod m)
409 *
410 * r Result of squaring.
411 * a Number to square in Montogmery form.
412 * m Modulus (prime).
413 * mp Montogmery mulitplier.
414 */
415static void sp_256_mont_sqr_10(sp_digit* r, const sp_digit* a, const sp_digit* m,
416 sp_digit mp)
417{
418 sp_256_sqr_10(r, a);
419 sp_256_mont_reduce_10(r, m, mp);
420}
421
422/* Invert the number, in Montgomery form, modulo the modulus (prime) of the
423 * P256 curve. (r = 1 / a mod m)
424 *
425 * r Inverse result.
426 * a Number to invert.
427 */
428#if 0
429/* Mod-2 for the P256 curve. */
430static const uint32_t p256_mod_2[8] = {
431 0xfffffffd,0xffffffff,0xffffffff,0x00000000,
432 0x00000000,0x00000000,0x00000001,0xffffffff,
433};
434//Bit pattern:
435//2 2 2 2 2 2 2 1...1
436//5 5 4 3 2 1 0 9...0 9...1
437//543210987654321098765432109876543210987654321098765432109876543210...09876543210...09876543210
438//111111111111111111111111111111110000000000000000000000000000000100...00000111111...11111111101
439#endif
440static void sp_256_mont_inv_10(sp_digit* r, sp_digit* a)
441{
442 sp_digit t[2*10]; //can be just [10]?
443 int i;
444
445 memcpy(t, a, sizeof(sp_digit) * 10);
446 for (i = 254; i >= 0; i--) {
447 sp_256_mont_sqr_10(t, t, p256_mod, p256_mp_mod);
448 /*if (p256_mod_2[i / 32] & ((sp_digit)1 << (i % 32)))*/
449 if (i >= 224 || i == 192 || (i <= 95 && i != 1))
450 sp_256_mont_mul_10(t, t, a, p256_mod, p256_mp_mod);
451 }
452 memcpy(r, t, sizeof(sp_digit) * 10);
453}
454
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200455/* Multiply a number by Montogmery normalizer mod modulus (prime).
456 *
457 * r The resulting Montgomery form number.
458 * a The number to convert.
459 */
460static void sp_256_mod_mul_norm_10(sp_digit* r, const sp_digit* a)
461{
Denys Vlasenko12040122021-04-26 20:24:34 +0200462 int64_t t[8];
Denys Vlasenko12040122021-04-26 20:24:34 +0200463 int64_t o;
Denys Vlasenko646e8562021-04-27 13:09:44 +0200464 uint32_t a32;
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200465
Denys Vlasenko12040122021-04-26 20:24:34 +0200466 /* 1 1 0 -1 -1 -1 -1 0 */
Denys Vlasenko12040122021-04-26 20:24:34 +0200467 /* 0 1 1 0 -1 -1 -1 -1 */
Denys Vlasenko12040122021-04-26 20:24:34 +0200468 /* 0 0 1 1 0 -1 -1 -1 */
Denys Vlasenko12040122021-04-26 20:24:34 +0200469 /* -1 -1 0 2 2 1 0 -1 */
Denys Vlasenko12040122021-04-26 20:24:34 +0200470 /* 0 -1 -1 0 2 2 1 0 */
Denys Vlasenko12040122021-04-26 20:24:34 +0200471 /* 0 0 -1 -1 0 2 2 1 */
Denys Vlasenko12040122021-04-26 20:24:34 +0200472 /* -1 -1 0 0 0 1 3 2 */
Denys Vlasenko12040122021-04-26 20:24:34 +0200473 /* 1 0 -1 -1 -1 -1 0 3 */
Denys Vlasenko646e8562021-04-27 13:09:44 +0200474 // t[] should be calculated from "a" (converted from 26-bit to 32-bit vector a32[8])
475 // according to the above matrix:
476 //t[0] = 0 + a32[0] + a32[1] - a32[3] - a32[4] - a32[5] - a32[6] ;
477 //t[1] = 0 + a32[1] + a32[2] - a32[4] - a32[5] - a32[6] - a32[7] ;
478 //t[2] = 0 + a32[2] + a32[3] - a32[5] - a32[6] - a32[7] ;
479 //t[3] = 0 - a32[0] - a32[1] + 2*a32[3] + 2*a32[4] + a32[5] - a32[7] ;
480 //t[4] = 0 - a32[1] - a32[2] + 2*a32[4] + 2*a32[5] + a32[6] ;
481 //t[5] = 0 - a32[2] - a32[3] + 2*a32[5] + 2*a32[6] + a32[7] ;
482 //t[6] = 0 - a32[0] - a32[1] + a32[5] + 3*a32[6] + 2*a32[7];
483 //t[7] = 0 + a32[0] - a32[2] - a32[3] - a32[4] - a32[5] + 3*a32[7];
484 // We can do it "piecemeal" after each a32[i] is known, no need to store entire a32[8] vector:
485
486#define A32 (int64_t)a32
487 a32 = a[0] | (a[1] << 26);
488 t[0] = 0 + A32;
489 t[3] = 0 - A32;
490 t[6] = 0 - A32;
491 t[7] = 0 + A32;
492
493 a32 = (a[1] >> 6) | (a[2] << 20);
494 t[0] += A32 ;
495 t[1] = 0 + A32;
496 t[3] -= A32 ;
497 t[4] = 0 - A32;
498 t[6] -= A32 ;
499
500 a32 = (a[2] >> 12) | (a[3] << 14);
501 t[1] += A32 ;
502 t[2] = 0 + A32;
503 t[4] -= A32 ;
504 t[5] = 0 - A32;
505 t[7] -= A32 ;
506
507 a32 = (a[3] >> 18) | (a[4] << 8);
508 t[0] -= A32 ;
509 t[2] += A32 ;
510 t[3] += 2*A32;
511 t[5] -= A32 ;
512 t[7] -= A32 ;
513
514 a32 = (a[4] >> 24) | (a[5] << 2) | (a[6] << 28);
515 t[0] -= A32 ;
516 t[1] -= A32 ;
517 t[3] += 2*A32;
518 t[4] += 2*A32;
519 t[7] -= A32 ;
520
521 a32 = (a[6] >> 4) | (a[7] << 22);
522 t[0] -= A32 ;
523 t[1] -= A32 ;
524 t[2] -= A32 ;
525 t[3] += A32 ;
526 t[4] += 2*A32;
527 t[5] += 2*A32;
528 t[6] += A32 ;
529 t[7] -= A32 ;
530
531 a32 = (a[7] >> 10) | (a[8] << 16);
532 t[0] -= A32 ;
533 t[1] -= A32 ;
534 t[2] -= A32 ;
535 t[4] += A32 ;
536 t[5] += 2*A32;
537 t[6] += 3*A32;
538
539 a32 = (a[8] >> 16) | (a[9] << 10);
540 t[1] -= A32 ;
541 t[2] -= A32 ;
542 t[3] -= A32 ;
543 t[5] += A32 ;
544 t[6] += 2*A32;
545 t[7] += 3*A32;
546#undef A32
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200547
Denys Vlasenko12040122021-04-26 20:24:34 +0200548 t[1] += t[0] >> 32; t[0] &= 0xffffffff;
549 t[2] += t[1] >> 32; t[1] &= 0xffffffff;
550 t[3] += t[2] >> 32; t[2] &= 0xffffffff;
551 t[4] += t[3] >> 32; t[3] &= 0xffffffff;
552 t[5] += t[4] >> 32; t[4] &= 0xffffffff;
553 t[6] += t[5] >> 32; t[5] &= 0xffffffff;
554 t[7] += t[6] >> 32; t[6] &= 0xffffffff;
555 o = t[7] >> 32; t[7] &= 0xffffffff;
556 t[0] += o;
557 t[3] -= o;
558 t[6] -= o;
559 t[7] += o;
Denys Vlasenko840ae692021-04-27 13:31:26 +0200560 t[1] += t[0] >> 32; //t[0] &= 0xffffffff;
561 t[2] += t[1] >> 32; //t[1] &= 0xffffffff;
562 t[3] += t[2] >> 32; //t[2] &= 0xffffffff;
563 t[4] += t[3] >> 32; //t[3] &= 0xffffffff;
564 t[5] += t[4] >> 32; //t[4] &= 0xffffffff;
565 t[6] += t[5] >> 32; //t[5] &= 0xffffffff;
566 t[7] += t[6] >> 32; //t[6] &= 0xffffffff; - (uint32_t)t[i] casts below accomplish masking
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200567
Denys Vlasenko840ae692021-04-27 13:31:26 +0200568 r[0] = 0x3ffffff & ((sp_digit)((uint32_t)t[0]));
569 r[1] = 0x3ffffff & ((sp_digit)((uint32_t)t[0] >> 26) | ((sp_digit)t[1] << 6));
570 r[2] = 0x3ffffff & ((sp_digit)((uint32_t)t[1] >> 20) | ((sp_digit)t[2] << 12));
571 r[3] = 0x3ffffff & ((sp_digit)((uint32_t)t[2] >> 14) | ((sp_digit)t[3] << 18));
572 r[4] = 0x3ffffff & ((sp_digit)((uint32_t)t[3] >> 8) | ((sp_digit)t[4] << 24));
573 r[5] = 0x3ffffff & ((sp_digit)((uint32_t)t[4] >> 2));
574 r[6] = 0x3ffffff & ((sp_digit)((uint32_t)t[4] >> 28) | ((sp_digit)t[5] << 4));
575 r[7] = 0x3ffffff & ((sp_digit)((uint32_t)t[5] >> 22) | ((sp_digit)t[6] << 10));
576 r[8] = 0x3ffffff & ((sp_digit)((uint32_t)t[6] >> 16) | ((sp_digit)t[7] << 16));
577 r[9] = ((sp_digit)((uint32_t)t[7] >> 10));
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200578}
579
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200580/* Map the Montgomery form projective co-ordinate point to an affine point.
581 *
582 * r Resulting affine co-ordinate point.
583 * p Montgomery form projective co-ordinate point.
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200584 */
Denys Vlasenko6381f3d2021-04-26 17:41:43 +0200585static void sp_256_map_10(sp_point* r, sp_point* p)
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200586{
Denys Vlasenko12040122021-04-26 20:24:34 +0200587 sp_digit t1[2*10];
588 sp_digit t2[2*10];
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200589
Denys Vlasenko12040122021-04-26 20:24:34 +0200590 sp_256_mont_inv_10(t1, p->z);
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200591
Denys Vlasenko12040122021-04-26 20:24:34 +0200592 sp_256_mont_sqr_10(t2, t1, p256_mod, p256_mp_mod);
593 sp_256_mont_mul_10(t1, t2, t1, p256_mod, p256_mp_mod);
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200594
Denys Vlasenko12040122021-04-26 20:24:34 +0200595 /* x /= z^2 */
596 sp_256_mont_mul_10(r->x, p->x, t2, p256_mod, p256_mp_mod);
597 memset(r->x + 10, 0, sizeof(r->x) / 2);
598 sp_256_mont_reduce_10(r->x, p256_mod, p256_mp_mod);
599 /* Reduce x to less than modulus */
Denys Vlasenko9a40be42021-04-26 21:58:04 +0200600 if (sp_256_cmp_10(r->x, p256_mod) >= 0)
601 sp_256_sub_10(r->x, r->x, p256_mod);
Denys Vlasenko12040122021-04-26 20:24:34 +0200602 sp_256_norm_10(r->x);
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200603
Denys Vlasenko12040122021-04-26 20:24:34 +0200604 /* y /= z^3 */
605 sp_256_mont_mul_10(r->y, p->y, t1, p256_mod, p256_mp_mod);
606 memset(r->y + 10, 0, sizeof(r->y) / 2);
607 sp_256_mont_reduce_10(r->y, p256_mod, p256_mp_mod);
608 /* Reduce y to less than modulus */
Denys Vlasenko9a40be42021-04-26 21:58:04 +0200609 if (sp_256_cmp_10(r->y, p256_mod) >= 0)
610 sp_256_sub_10(r->y, r->y, p256_mod);
Denys Vlasenko12040122021-04-26 20:24:34 +0200611 sp_256_norm_10(r->y);
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200612
Denys Vlasenko12040122021-04-26 20:24:34 +0200613 memset(r->z, 0, sizeof(r->z));
614 r->z[0] = 1;
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200615}
616
617/* Double the Montgomery form projective point p.
618 *
619 * r Result of doubling point.
620 * p Point to double.
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200621 */
Denys Vlasenko6381f3d2021-04-26 17:41:43 +0200622static void sp_256_proj_point_dbl_10(sp_point* r, sp_point* p)
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200623{
Denys Vlasenko12040122021-04-26 20:24:34 +0200624 sp_point tp;
625 sp_digit t1[2*10];
626 sp_digit t2[2*10];
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200627
Denys Vlasenko12040122021-04-26 20:24:34 +0200628 /* Put point to double into result */
629 if (r != p)
630 *r = *p; /* struct copy */
Denys Vlasenko4d3a5c12021-04-26 15:21:38 +0200631
Denys Vlasenko12040122021-04-26 20:24:34 +0200632 if (r->infinity) {
633 /* If infinity, don't double (work on dummy value) */
634 r = &tp;
635 }
636 /* T1 = Z * Z */
637 sp_256_mont_sqr_10(t1, r->z, p256_mod, p256_mp_mod);
638 /* Z = Y * Z */
639 sp_256_mont_mul_10(r->z, r->y, r->z, p256_mod, p256_mp_mod);
640 /* Z = 2Z */
641 sp_256_mont_dbl_10(r->z, r->z, p256_mod);
642 /* T2 = X - T1 */
643 sp_256_mont_sub_10(t2, r->x, t1, p256_mod);
644 /* T1 = X + T1 */
645 sp_256_mont_add_10(t1, r->x, t1, p256_mod);
646 /* T2 = T1 * T2 */
647 sp_256_mont_mul_10(t2, t1, t2, p256_mod, p256_mp_mod);
648 /* T1 = 3T2 */
649 sp_256_mont_tpl_10(t1, t2, p256_mod);
650 /* Y = 2Y */
651 sp_256_mont_dbl_10(r->y, r->y, p256_mod);
652 /* Y = Y * Y */
653 sp_256_mont_sqr_10(r->y, r->y, p256_mod, p256_mp_mod);
654 /* T2 = Y * Y */
655 sp_256_mont_sqr_10(t2, r->y, p256_mod, p256_mp_mod);
656 /* T2 = T2/2 */
657 sp_256_div2_10(t2, t2, p256_mod);
658 /* Y = Y * X */
659 sp_256_mont_mul_10(r->y, r->y, r->x, p256_mod, p256_mp_mod);
660 /* X = T1 * T1 */
661 sp_256_mont_mul_10(r->x, t1, t1, p256_mod, p256_mp_mod);
662 /* X = X - Y */
663 sp_256_mont_sub_10(r->x, r->x, r->y, p256_mod);
664 /* X = X - Y */
665 sp_256_mont_sub_10(r->x, r->x, r->y, p256_mod);
666 /* Y = Y - X */
667 sp_256_mont_sub_10(r->y, r->y, r->x, p256_mod);
668 /* Y = Y * T1 */
669 sp_256_mont_mul_10(r->y, r->y, t1, p256_mod, p256_mp_mod);
670 /* Y = Y - T2 */
671 sp_256_mont_sub_10(r->y, r->y, t2, p256_mod);
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200672}
673
674/* Add two Montgomery form projective points.
675 *
676 * r Result of addition.
677 * p Frist point to add.
678 * q Second point to add.
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200679 */
Denys Vlasenko6381f3d2021-04-26 17:41:43 +0200680static void sp_256_proj_point_add_10(sp_point* r, sp_point* p, sp_point* q)
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200681{
Denys Vlasenko12040122021-04-26 20:24:34 +0200682 sp_digit t1[2*10];
683 sp_digit t2[2*10];
684 sp_digit t3[2*10];
685 sp_digit t4[2*10];
686 sp_digit t5[2*10];
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200687
Denys Vlasenko12040122021-04-26 20:24:34 +0200688 /* Ensure only the first point is the same as the result. */
689 if (q == r) {
690 sp_point* a = p;
691 p = q;
692 q = a;
693 }
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200694
Denys Vlasenko12040122021-04-26 20:24:34 +0200695 /* Check double */
696 sp_256_sub_10(t1, p256_mod, q->y);
697 sp_256_norm_10(t1);
698 if (sp_256_cmp_equal_10(p->x, q->x)
699 && sp_256_cmp_equal_10(p->z, q->z)
700 && (sp_256_cmp_equal_10(p->y, q->y) || sp_256_cmp_equal_10(p->y, t1))
701 ) {
702 sp_256_proj_point_dbl_10(r, p);
703 }
704 else {
705 sp_point tp;
706 sp_point *v;
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200707
Denys Vlasenko12040122021-04-26 20:24:34 +0200708 v = r;
709 if (p->infinity | q->infinity) {
710 memset(&tp, 0, sizeof(tp));
711 v = &tp;
712 }
Denys Vlasenko772e1872021-04-26 17:25:27 +0200713
Denys Vlasenko12040122021-04-26 20:24:34 +0200714 *r = p->infinity ? *q : *p; /* struct copy */
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200715
Denys Vlasenko12040122021-04-26 20:24:34 +0200716 /* U1 = X1*Z2^2 */
717 sp_256_mont_sqr_10(t1, q->z, p256_mod, p256_mp_mod);
718 sp_256_mont_mul_10(t3, t1, q->z, p256_mod, p256_mp_mod);
719 sp_256_mont_mul_10(t1, t1, v->x, p256_mod, p256_mp_mod);
720 /* U2 = X2*Z1^2 */
721 sp_256_mont_sqr_10(t2, v->z, p256_mod, p256_mp_mod);
722 sp_256_mont_mul_10(t4, t2, v->z, p256_mod, p256_mp_mod);
723 sp_256_mont_mul_10(t2, t2, q->x, p256_mod, p256_mp_mod);
724 /* S1 = Y1*Z2^3 */
725 sp_256_mont_mul_10(t3, t3, v->y, p256_mod, p256_mp_mod);
726 /* S2 = Y2*Z1^3 */
727 sp_256_mont_mul_10(t4, t4, q->y, p256_mod, p256_mp_mod);
728 /* H = U2 - U1 */
729 sp_256_mont_sub_10(t2, t2, t1, p256_mod);
730 /* R = S2 - S1 */
731 sp_256_mont_sub_10(t4, t4, t3, p256_mod);
732 /* Z3 = H*Z1*Z2 */
733 sp_256_mont_mul_10(v->z, v->z, q->z, p256_mod, p256_mp_mod);
734 sp_256_mont_mul_10(v->z, v->z, t2, p256_mod, p256_mp_mod);
735 /* X3 = R^2 - H^3 - 2*U1*H^2 */
736 sp_256_mont_sqr_10(v->x, t4, p256_mod, p256_mp_mod);
737 sp_256_mont_sqr_10(t5, t2, p256_mod, p256_mp_mod);
738 sp_256_mont_mul_10(v->y, t1, t5, p256_mod, p256_mp_mod);
739 sp_256_mont_mul_10(t5, t5, t2, p256_mod, p256_mp_mod);
740 sp_256_mont_sub_10(v->x, v->x, t5, p256_mod);
741 sp_256_mont_dbl_10(t1, v->y, p256_mod);
742 sp_256_mont_sub_10(v->x, v->x, t1, p256_mod);
743 /* Y3 = R*(U1*H^2 - X3) - S1*H^3 */
744 sp_256_mont_sub_10(v->y, v->y, v->x, p256_mod);
745 sp_256_mont_mul_10(v->y, v->y, t4, p256_mod, p256_mp_mod);
746 sp_256_mont_mul_10(t5, t5, t3, p256_mod, p256_mp_mod);
747 sp_256_mont_sub_10(v->y, v->y, t5, p256_mod);
748 }
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200749}
750
751/* Multiply the point by the scalar and return the result.
752 * If map is true then convert result to affine co-ordinates.
753 *
754 * r Resulting point.
755 * g Point to multiply.
756 * k Scalar to multiply by.
Denys Vlasenko03ab2a92021-04-26 14:55:46 +0200757 * map Indicates whether to convert result to affine.
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200758 */
759static void sp_256_ecc_mulmod_10(sp_point* r, const sp_point* g, const sp_digit* k /*, int map*/)
760{
Denys Vlasenko12040122021-04-26 20:24:34 +0200761 enum { map = 1 }; /* we always convert result to affine coordinates */
762 sp_point t[3];
763 sp_digit n;
764 int i;
765 int c, y;
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200766
Denys Vlasenko12040122021-04-26 20:24:34 +0200767 memset(t, 0, sizeof(t));
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200768
Denys Vlasenko12040122021-04-26 20:24:34 +0200769 /* t[0] = {0, 0, 1} * norm */
770 t[0].infinity = 1;
771 /* t[1] = {g->x, g->y, g->z} * norm */
772 sp_256_mod_mul_norm_10(t[1].x, g->x);
773 sp_256_mod_mul_norm_10(t[1].y, g->y);
774 sp_256_mod_mul_norm_10(t[1].z, g->z);
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200775
Denys Vlasenko12040122021-04-26 20:24:34 +0200776 i = 9;
777 c = 22;
778 n = k[i--] << (26 - c);
779 for (; ; c--) {
780 if (c == 0) {
781 if (i == -1)
782 break;
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200783
Denys Vlasenko12040122021-04-26 20:24:34 +0200784 n = k[i--];
785 c = 26;
786 }
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200787
Denys Vlasenko12040122021-04-26 20:24:34 +0200788 y = (n >> 25) & 1;
789 n <<= 1;
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200790
Denys Vlasenko12040122021-04-26 20:24:34 +0200791 sp_256_proj_point_add_10(&t[y^1], &t[0], &t[1]);
792 memcpy(&t[2], &t[y], sizeof(sp_point));
793 sp_256_proj_point_dbl_10(&t[2], &t[2]);
794 memcpy(&t[y], &t[2], sizeof(sp_point));
795 }
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200796
Denys Vlasenko12040122021-04-26 20:24:34 +0200797 if (map)
798 sp_256_map_10(r, &t[0]);
799 else
800 memcpy(r, &t[0], sizeof(sp_point));
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200801
Denys Vlasenko12040122021-04-26 20:24:34 +0200802 memset(t, 0, sizeof(t)); //paranoia
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200803}
804
805/* Multiply the base point of P256 by the scalar and return the result.
806 * If map is true then convert result to affine co-ordinates.
807 *
808 * r Resulting point.
809 * k Scalar to multiply by.
Denys Vlasenko03ab2a92021-04-26 14:55:46 +0200810 * map Indicates whether to convert result to affine.
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200811 */
812static void sp_256_ecc_mulmod_base_10(sp_point* r, sp_digit* k /*, int map*/)
813{
Denys Vlasenko39a3ef52021-04-27 01:31:51 +0200814 /* Since this function is called only once, save space:
815 * don't have "static const sp_point p256_base = {...}",
816 * it would have more zeros than data.
817 */
Denys Vlasenko48a18d12021-04-27 12:24:21 +0200818 static const uint8_t p256_base_bin[] = {
819 /* x (big-endian) */
820 0x6b,0x17,0xd1,0xf2,0xe1,0x2c,0x42,0x47,0xf8,0xbc,0xe6,0xe5,0x63,0xa4,0x40,0xf2,0x77,0x03,0x7d,0x81,0x2d,0xeb,0x33,0xa0,0xf4,0xa1,0x39,0x45,0xd8,0x98,0xc2,0x96,
821 /* y */
822 0x4f,0xe3,0x42,0xe2,0xfe,0x1a,0x7f,0x9b,0x8e,0xe7,0xeb,0x4a,0x7c,0x0f,0x9e,0x16,0x2b,0xce,0x33,0x57,0x6b,0x31,0x5e,0xce,0xcb,0xb6,0x40,0x68,0x37,0xbf,0x51,0xf5,
Denys Vlasenko646e8562021-04-27 13:09:44 +0200823 /* z will be set to 1, infinity flag to "false" */
Denys Vlasenko39a3ef52021-04-27 01:31:51 +0200824 };
825 sp_point p256_base;
826
Denys Vlasenko48a18d12021-04-27 12:24:21 +0200827 sp_256_point_from_bin2x32(&p256_base, p256_base_bin);
Denys Vlasenko39a3ef52021-04-27 01:31:51 +0200828
Denys Vlasenko12040122021-04-26 20:24:34 +0200829 sp_256_ecc_mulmod_10(r, &p256_base, k /*, map*/);
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200830}
831
832/* Multiply the point by the scalar and serialize the X ordinate.
833 * The number is 0 padded to maximum size on output.
834 *
835 * priv Scalar to multiply the point by.
Denys Vlasenko074b33b2021-04-26 14:33:38 +0200836 * pub2x32 Point to multiply.
837 * out32 Buffer to hold X ordinate.
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200838 */
Denys Vlasenkoa2bc52d2021-04-27 01:21:26 +0200839static void sp_ecc_secret_gen_256(const sp_digit priv[10], const uint8_t *pub2x32, uint8_t* out32)
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200840{
Denys Vlasenko12040122021-04-26 20:24:34 +0200841 sp_point point[1];
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200842
843#if FIXED_PEER_PUBKEY
Denys Vlasenko12040122021-04-26 20:24:34 +0200844 memset((void*)pub2x32, 0x55, 64);
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200845#endif
Denys Vlasenko12040122021-04-26 20:24:34 +0200846 dump_hex("peerkey %s\n", pub2x32, 32); /* in TLS, this is peer's public key */
847 dump_hex(" %s\n", pub2x32 + 32, 32);
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200848
Denys Vlasenko12040122021-04-26 20:24:34 +0200849 sp_256_point_from_bin2x32(point, pub2x32);
850 dump_hex("point->x %s\n", point->x, sizeof(point->x));
851 dump_hex("point->y %s\n", point->y, sizeof(point->y));
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200852
Denys Vlasenko12040122021-04-26 20:24:34 +0200853 sp_256_ecc_mulmod_10(point, point, priv);
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200854
Denys Vlasenko12040122021-04-26 20:24:34 +0200855 sp_256_to_bin(point->x, out32);
856 dump_hex("out32: %s\n", out32, 32);
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200857}
858
Denys Vlasenko074b33b2021-04-26 14:33:38 +0200859/* Generates a scalar that is in the range 1..order-1. */
860#define SIMPLIFY 1
861/* Add 1 to a. (a = a + 1) */
Denys Vlasenko074b33b2021-04-26 14:33:38 +0200862static void sp_256_add_one_10(sp_digit* a)
863{
Denys Vlasenko12040122021-04-26 20:24:34 +0200864 a[0]++;
865 sp_256_norm_10(a);
Denys Vlasenko074b33b2021-04-26 14:33:38 +0200866}
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200867static void sp_256_ecc_gen_k_10(sp_digit k[10])
868{
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200869#if !SIMPLIFY
870 /* The order of the curve P256 minus 2. */
871 static const sp_digit p256_order2[10] = {
872 0x063254f,0x272b0bf,0x1e84f3b,0x2b69c5e,0x3bce6fa,
873 0x3ffffff,0x3ffffff,0x00003ff,0x3ff0000,0x03fffff,
874 };
875#endif
876 uint8_t buf[32];
877
878 for (;;) {
879 tls_get_random(buf, sizeof(buf));
880#if FIXED_SECRET
881 memset(buf, 0x77, sizeof(buf));
882#endif
883 sp_256_from_bin(k, 10, buf, sizeof(buf));
884#if !SIMPLIFY
885 if (sp_256_cmp_10(k, p256_order2) < 0)
886 break;
887#else
888 /* non-loopy version (and not needing p256_order2[]):
Denys Vlasenko074b33b2021-04-26 14:33:38 +0200889 * if most-significant word seems that k can be larger
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200890 * than p256_order2, fix it up:
891 */
892 if (k[9] >= 0x03fffff)
893 k[9] = 0x03ffffe;
894 break;
895#endif
896 }
897 sp_256_add_one_10(k);
898#undef SIMPLIFY
899}
900
Denys Vlasenko074b33b2021-04-26 14:33:38 +0200901/* Makes a random EC key pair. */
902static void sp_ecc_make_key_256(sp_digit privkey[10], uint8_t *pubkey)
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200903{
904 sp_point point[1];
905
Denys Vlasenko074b33b2021-04-26 14:33:38 +0200906 sp_256_ecc_gen_k_10(privkey);
907 sp_256_ecc_mulmod_base_10(point, privkey);
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200908 sp_256_to_bin(point->x, pubkey);
909 sp_256_to_bin(point->y, pubkey + 32);
910
911 memset(point, 0, sizeof(point)); //paranoia
912}
913
914void FAST_FUNC curve_P256_compute_pubkey_and_premaster(
Denys Vlasenko074b33b2021-04-26 14:33:38 +0200915 uint8_t *pubkey2x32, uint8_t *premaster32,
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200916 const uint8_t *peerkey2x32)
917{
918 sp_digit privkey[10];
919
Denys Vlasenko074b33b2021-04-26 14:33:38 +0200920 sp_ecc_make_key_256(privkey, pubkey2x32);
921 dump_hex("pubkey: %s\n", pubkey2x32, 32);
922 dump_hex(" %s\n", pubkey2x32 + 32, 32);
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200923
Denys Vlasenko074b33b2021-04-26 14:33:38 +0200924 /* Combine our privkey and peer's public key to generate premaster */
Denys Vlasenkof18a1fd2021-04-26 13:25:56 +0200925 sp_ecc_secret_gen_256(privkey, /*x,y:*/peerkey2x32, premaster32);
926 dump_hex("premaster: %s\n", premaster32, 32);
927}