Bitcoin Core  31.0.0
P2P Digital Currency
session_impl.h
Go to the documentation of this file.
1 /***********************************************************************
2  * Distributed under the MIT software license, see the accompanying *
3  * file COPYING or https://www.opensource.org/licenses/mit-license.php.*
4  ***********************************************************************/
5 
6 #ifndef SECP256K1_MODULE_MUSIG_SESSION_IMPL_H
7 #define SECP256K1_MODULE_MUSIG_SESSION_IMPL_H
8 
9 #include <string.h>
10 
11 #include "../../../include/secp256k1.h"
12 #include "../../../include/secp256k1_extrakeys.h"
13 #include "../../../include/secp256k1_musig.h"
14 
15 #include "keyagg.h"
16 #include "session.h"
17 #include "../../eckey.h"
18 #include "../../hash.h"
19 #include "../../scalar.h"
20 #include "../../util.h"
21 
22 /* Outputs 33 zero bytes if the given group element is the point at infinity and
23  * otherwise outputs the compressed serialization */
24 static void secp256k1_musig_ge_serialize_ext(unsigned char *out33, secp256k1_ge* ge) {
25  if (secp256k1_ge_is_infinity(ge)) {
26  memset(out33, 0, 33);
27  } else {
28  /* Serialize must succeed because the point is not at infinity */
30  }
31 }
32 
33 /* Outputs the point at infinity if the given byte array is all zero, otherwise
34  * attempts to parse compressed point serialization. */
35 static int secp256k1_musig_ge_parse_ext(secp256k1_ge* ge, const unsigned char *in33) {
36  unsigned char zeros[33] = { 0 };
37 
38  if (secp256k1_memcmp_var(in33, zeros, sizeof(zeros)) == 0) {
40  return 1;
41  }
42  if (!secp256k1_eckey_pubkey_parse(ge, in33, 33)) {
43  return 0;
44  }
46 }
47 
48 static const unsigned char secp256k1_musig_secnonce_magic[4] = { 0x22, 0x0e, 0xdc, 0xf1 };
49 
51  memcpy(&secnonce->data[0], secp256k1_musig_secnonce_magic, 4);
52  secp256k1_scalar_get_b32(&secnonce->data[4], &k[0]);
53  secp256k1_scalar_get_b32(&secnonce->data[36], &k[1]);
54  secp256k1_ge_to_bytes(&secnonce->data[68], pk);
55 }
56 
58  int is_zero;
60  /* We make very sure that the nonce isn't invalidated by checking the values
61  * in addition to the magic. */
62  is_zero = secp256k1_is_zero_array(&secnonce->data[4], 2 * 32);
63  secp256k1_declassify(ctx, &is_zero, sizeof(is_zero));
64  ARG_CHECK(!is_zero);
65 
66  secp256k1_scalar_set_b32(&k[0], &secnonce->data[4], NULL);
67  secp256k1_scalar_set_b32(&k[1], &secnonce->data[36], NULL);
68  secp256k1_ge_from_bytes(pk, &secnonce->data[68]);
69  return 1;
70 }
71 
72 /* If flag is 1, invalidate the secnonce; if flag is 0, leave it.
73  * Constant-time. Flag must be 0 or 1. */
75  secp256k1_memczero(secnonce->data, sizeof(secnonce->data), flag);
76  /* The flag argument is usually classified. So, the line above makes the
77  * magic and public key classified. However, we need both to be
78  * declassified. Note that we don't declassify the entire object, because if
79  * flag is 0, then k[0] and k[1] have not been zeroed. */
81  secp256k1_declassify(ctx, &secnonce->data[68], 64);
82 }
83 
84 static const unsigned char secp256k1_musig_pubnonce_magic[4] = { 0xf5, 0x7a, 0x3d, 0xa0 };
85 
86 /* Saves two group elements into a pubnonce. Requires that none of the provided
87  * group elements is infinity. */
89  int i;
91  for (i = 0; i < 2; i++) {
92  secp256k1_ge_to_bytes(nonce->data + 4+64*i, &ges[i]);
93  }
94 }
95 
96 /* Loads two group elements from a pubnonce. Returns 1 unless the nonce wasn't
97  * properly initialized */
99  int i;
100 
102  for (i = 0; i < 2; i++) {
103  secp256k1_ge_from_bytes(&ges[i], nonce->data + 4 + 64*i);
104  }
105  return 1;
106 }
107 
108 static const unsigned char secp256k1_musig_aggnonce_magic[4] = { 0xa8, 0xb7, 0xe4, 0x67 };
109 
111  int i;
113  for (i = 0; i < 2; i++) {
114  secp256k1_ge_to_bytes_ext(&nonce->data[4 + 64*i], &ges[i]);
115  }
116 }
117 
119  int i;
120 
122  for (i = 0; i < 2; i++) {
123  secp256k1_ge_from_bytes_ext(&ges[i], &nonce->data[4 + 64*i]);
124  }
125  return 1;
126 }
127 
128 static const unsigned char secp256k1_musig_session_cache_magic[4] = { 0x9d, 0xed, 0xe9, 0x17 };
129 
130 /* A session consists of
131  * - 4 byte session cache magic
132  * - 1 byte the parity of the final nonce
133  * - 32 byte serialized x-only final nonce
134  * - 32 byte nonce coefficient b
135  * - 32 byte signature challenge hash e
136  * - 32 byte scalar s that is added to the partial signatures of the signers
137  */
139  unsigned char *ptr = session->data;
140 
142  ptr += 4;
143  *ptr = session_i->fin_nonce_parity;
144  ptr += 1;
145  memcpy(ptr, session_i->fin_nonce, 32);
146  ptr += 32;
147  secp256k1_scalar_get_b32(ptr, &session_i->noncecoef);
148  ptr += 32;
149  secp256k1_scalar_get_b32(ptr, &session_i->challenge);
150  ptr += 32;
151  secp256k1_scalar_get_b32(ptr, &session_i->s_part);
152 }
153 
155  const unsigned char *ptr = session->data;
156 
158  ptr += 4;
159  session_i->fin_nonce_parity = *ptr;
160  ptr += 1;
161  memcpy(session_i->fin_nonce, ptr, 32);
162  ptr += 32;
163  secp256k1_scalar_set_b32(&session_i->noncecoef, ptr, NULL);
164  ptr += 32;
165  secp256k1_scalar_set_b32(&session_i->challenge, ptr, NULL);
166  ptr += 32;
167  secp256k1_scalar_set_b32(&session_i->s_part, ptr, NULL);
168  return 1;
169 }
170 
171 static const unsigned char secp256k1_musig_partial_sig_magic[4] = { 0xeb, 0xfb, 0x1a, 0x32 };
172 
175  secp256k1_scalar_get_b32(&sig->data[4], s);
176 }
177 
179  int overflow;
180 
182  secp256k1_scalar_set_b32(s, &sig->data[4], &overflow);
183  /* Parsed signatures can not overflow */
184  VERIFY_CHECK(!overflow);
185  return 1;
186 }
187 
189  secp256k1_ge ges[2];
190  int i;
191 
192  VERIFY_CHECK(ctx != NULL);
193  ARG_CHECK(nonce != NULL);
194  ARG_CHECK(in66 != NULL);
195 
196  for (i = 0; i < 2; i++) {
197  if (!secp256k1_eckey_pubkey_parse(&ges[i], &in66[33*i], 33)) {
198  return 0;
199  }
200  if (!secp256k1_ge_is_in_correct_subgroup(&ges[i])) {
201  return 0;
202  }
203  }
205  return 1;
206 }
207 
209  secp256k1_ge ges[2];
210  int i;
211 
212  VERIFY_CHECK(ctx != NULL);
213  ARG_CHECK(out66 != NULL);
214  memset(out66, 0, 66);
215  ARG_CHECK(nonce != NULL);
216 
217  if (!secp256k1_musig_pubnonce_load(ctx, ges, nonce)) {
218  return 0;
219  }
220  for (i = 0; i < 2; i++) {
221  /* serialize must succeed because the point was just loaded */
222  secp256k1_eckey_pubkey_serialize33(&ges[i], &out66[33*i]);
223  }
224  return 1;
225 }
226 
228  secp256k1_ge ges[2];
229  int i;
230 
231  VERIFY_CHECK(ctx != NULL);
232  ARG_CHECK(nonce != NULL);
233  ARG_CHECK(in66 != NULL);
234 
235  for (i = 0; i < 2; i++) {
236  if (!secp256k1_musig_ge_parse_ext(&ges[i], &in66[33*i])) {
237  return 0;
238  }
239  }
241  return 1;
242 }
243 
245  secp256k1_ge ges[2];
246  int i;
247 
248  VERIFY_CHECK(ctx != NULL);
249  ARG_CHECK(out66 != NULL);
250  memset(out66, 0, 66);
251  ARG_CHECK(nonce != NULL);
252 
253  if (!secp256k1_musig_aggnonce_load(ctx, ges, nonce)) {
254  return 0;
255  }
256  for (i = 0; i < 2; i++) {
257  secp256k1_musig_ge_serialize_ext(&out66[33*i], &ges[i]);
258  }
259  return 1;
260 }
261 
262 int secp256k1_musig_partial_sig_parse(const secp256k1_context* ctx, secp256k1_musig_partial_sig* sig, const unsigned char *in32) {
263  secp256k1_scalar tmp;
264  int overflow;
265  VERIFY_CHECK(ctx != NULL);
266  ARG_CHECK(sig != NULL);
267  ARG_CHECK(in32 != NULL);
268 
269  /* Ensure that using the signature will fail if parsing fails (and the user
270  * doesn't check the return value). */
271  memset(sig, 0, sizeof(*sig));
272 
273  secp256k1_scalar_set_b32(&tmp, in32, &overflow);
274  if (overflow) {
275  return 0;
276  }
278  return 1;
279 }
280 
282  VERIFY_CHECK(ctx != NULL);
283  ARG_CHECK(out32 != NULL);
284  ARG_CHECK(sig != NULL);
286 
287  memcpy(out32, &sig->data[4], 32);
288  return 1;
289 }
290 
291 /* Write optional inputs into the hash */
292 static void secp256k1_nonce_function_musig_helper(secp256k1_sha256 *sha, unsigned int prefix_size, const unsigned char *data, unsigned char len) {
293  unsigned char zero[7] = { 0 };
294  /* The spec requires length prefixes to be between 1 and 8 bytes
295  * (inclusive) */
296  VERIFY_CHECK(prefix_size >= 1 && prefix_size <= 8);
297  /* Since the length of all input data fits in a byte, we can always pad the
298  * length prefix with prefix_size - 1 zero bytes. */
299  secp256k1_sha256_write(sha, zero, prefix_size - 1);
300  if (data != NULL) {
301  secp256k1_sha256_write(sha, &len, 1);
302  secp256k1_sha256_write(sha, data, len);
303  } else {
304  len = 0;
305  secp256k1_sha256_write(sha, &len, 1);
306  }
307 }
308 
309 /* Initializes SHA256 with fixed midstate. This midstate was computed by applying
310  * SHA256 to SHA256("MuSig/aux")||SHA256("MuSig/aux"). */
313  sha->s[0] = 0xa19e884bul;
314  sha->s[1] = 0xf463fe7eul;
315  sha->s[2] = 0x2f18f9a2ul;
316  sha->s[3] = 0xbeb0f9fful;
317  sha->s[4] = 0x0f37e8b0ul;
318  sha->s[5] = 0x06ebd26ful;
319  sha->s[6] = 0xe3b243d2ul;
320  sha->s[7] = 0x522fb150ul;
321  sha->bytes = 64;
322 }
323 
324 /* Initializes SHA256 with fixed midstate. This midstate was computed by applying
325  * SHA256 to SHA256("MuSig/nonce")||SHA256("MuSig/nonce"). */
328  sha->s[0] = 0x07101b64ul;
329  sha->s[1] = 0x18003414ul;
330  sha->s[2] = 0x0391bc43ul;
331  sha->s[3] = 0x0e6258eeul;
332  sha->s[4] = 0x29d26b72ul;
333  sha->s[5] = 0x8343937eul;
334  sha->s[6] = 0xb7a0a4fbul;
335  sha->s[7] = 0xff568a30ul;
336  sha->bytes = 64;
337 }
338 
339 static void secp256k1_nonce_function_musig(secp256k1_scalar *k, const unsigned char *session_secrand, const unsigned char *msg32, const unsigned char *seckey32, const unsigned char *pk33, const unsigned char *agg_pk32, const unsigned char *extra_input32) {
340  secp256k1_sha256 sha;
341  unsigned char rand[32];
342  unsigned char i;
343  unsigned char msg_present;
344 
345  if (seckey32 != NULL) {
347  secp256k1_sha256_write(&sha, session_secrand, 32);
348  secp256k1_sha256_finalize(&sha, rand);
349  for (i = 0; i < 32; i++) {
350  rand[i] ^= seckey32[i];
351  }
352  } else {
353  memcpy(rand, session_secrand, sizeof(rand));
354  }
355 
357  secp256k1_sha256_write(&sha, rand, sizeof(rand));
358  secp256k1_nonce_function_musig_helper(&sha, 1, pk33, 33);
359  secp256k1_nonce_function_musig_helper(&sha, 1, agg_pk32, 32);
360  msg_present = msg32 != NULL;
361  secp256k1_sha256_write(&sha, &msg_present, 1);
362  if (msg_present) {
363  secp256k1_nonce_function_musig_helper(&sha, 8, msg32, 32);
364  }
365  secp256k1_nonce_function_musig_helper(&sha, 4, extra_input32, 32);
366 
367  for (i = 0; i < 2; i++) {
368  unsigned char buf[32];
369  secp256k1_sha256 sha_tmp = sha;
370  secp256k1_sha256_write(&sha_tmp, &i, 1);
371  secp256k1_sha256_finalize(&sha_tmp, buf);
372  secp256k1_scalar_set_b32(&k[i], buf, NULL);
373 
374  /* Attempt to erase secret data */
375  secp256k1_memclear_explicit(buf, sizeof(buf));
376  secp256k1_sha256_clear(&sha_tmp);
377  }
378  secp256k1_memclear_explicit(rand, sizeof(rand));
380 }
381 
382 static int secp256k1_musig_nonce_gen_internal(const secp256k1_context* ctx, secp256k1_musig_secnonce *secnonce, secp256k1_musig_pubnonce *pubnonce, const unsigned char *input_nonce, const unsigned char *seckey, const secp256k1_pubkey *pubkey, const unsigned char *msg32, const secp256k1_musig_keyagg_cache *keyagg_cache, const unsigned char *extra_input32) {
383  secp256k1_scalar k[2];
384  secp256k1_ge nonce_pts[2];
385  secp256k1_gej nonce_ptj[2];
386  int i;
387  unsigned char pk_ser[33];
388  unsigned char aggpk_ser[32];
389  unsigned char *aggpk_ser_ptr = NULL;
391  int ret = 1;
392 
393  ARG_CHECK(pubnonce != NULL);
394  memset(pubnonce, 0, sizeof(*pubnonce));
395  ARG_CHECK(pubkey != NULL);
397 
398  /* Check that the seckey is valid to be able to sign for it later. */
399  if (seckey != NULL) {
403  }
404 
405  if (keyagg_cache != NULL) {
407  if (!secp256k1_keyagg_cache_load(ctx, &cache_i, keyagg_cache)) {
408  return 0;
409  }
410  /* The loaded point cache_i.pk can not be the point at infinity. */
411  secp256k1_fe_get_b32(aggpk_ser, &cache_i.pk.x);
412  aggpk_ser_ptr = aggpk_ser;
413  }
414  if (!secp256k1_pubkey_load(ctx, &pk, pubkey)) {
415  return 0;
416  }
417  /* A pubkey cannot be the point at infinity */
419 
420  secp256k1_nonce_function_musig(k, input_nonce, msg32, seckey, pk_ser, aggpk_ser_ptr, extra_input32);
423  secp256k1_musig_secnonce_save(secnonce, k, &pk);
424  secp256k1_musig_secnonce_invalidate(ctx, secnonce, !ret);
425 
426  /* Compute pubnonce as two gejs */
427  for (i = 0; i < 2; i++) {
428  secp256k1_ecmult_gen(&ctx->ecmult_gen_ctx, &nonce_ptj[i], &k[i]);
430  }
431 
432  /* Batch convert to two public ges */
433  secp256k1_ge_set_all_gej(nonce_pts, nonce_ptj, 2);
434  for (i = 0; i < 2; i++) {
435  secp256k1_gej_clear(&nonce_ptj[i]);
436  }
437 
438  for (i = 0; i < 2; i++) {
439  secp256k1_declassify(ctx, &nonce_pts[i], sizeof(nonce_pts[i]));
440  }
441  /* None of the nonce_pts will be infinity because k != 0 with overwhelming
442  * probability */
443  secp256k1_musig_pubnonce_save(pubnonce, nonce_pts);
444  return ret;
445 }
446 
447 int secp256k1_musig_nonce_gen(const secp256k1_context* ctx, secp256k1_musig_secnonce *secnonce, secp256k1_musig_pubnonce *pubnonce, unsigned char *session_secrand32, const unsigned char *seckey, const secp256k1_pubkey *pubkey, const unsigned char *msg32, const secp256k1_musig_keyagg_cache *keyagg_cache, const unsigned char *extra_input32) {
448  int ret = 1;
449 
450  VERIFY_CHECK(ctx != NULL);
451  ARG_CHECK(secnonce != NULL);
452  memset(secnonce, 0, sizeof(*secnonce));
453  ARG_CHECK(session_secrand32 != NULL);
454 
455  /* Check in constant time that the session_secrand32 is not 0 as a
456  * defense-in-depth measure that may protect against a faulty RNG. */
457  ret &= !secp256k1_is_zero_array(session_secrand32, 32);
458 
459  /* We can declassify because branching on ret is only relevant when this
460  * function called with an invalid session_secrand32 argument */
461  secp256k1_declassify(ctx, &ret, sizeof(ret));
462  if (ret == 0) {
463  secp256k1_musig_secnonce_invalidate(ctx, secnonce, 1);
464  return 0;
465  }
466 
467  ret &= secp256k1_musig_nonce_gen_internal(ctx, secnonce, pubnonce, session_secrand32, seckey, pubkey, msg32, keyagg_cache, extra_input32);
468 
469  /* Set the session_secrand32 buffer to zero to prevent the caller from using
470  * nonce_gen multiple times with the same buffer. */
471  secp256k1_memczero(session_secrand32, 32, ret);
472  return ret;
473 }
474 
475 int secp256k1_musig_nonce_gen_counter(const secp256k1_context* ctx, secp256k1_musig_secnonce *secnonce, secp256k1_musig_pubnonce *pubnonce, uint64_t nonrepeating_cnt, const secp256k1_keypair *keypair, const unsigned char *msg32, const secp256k1_musig_keyagg_cache *keyagg_cache, const unsigned char *extra_input32) {
476  unsigned char buf[32] = { 0 };
477  unsigned char seckey[32];
478  secp256k1_pubkey pubkey;
479  int ret;
480 
481  VERIFY_CHECK(ctx != NULL);
482  ARG_CHECK(secnonce != NULL);
483  memset(secnonce, 0, sizeof(*secnonce));
484  ARG_CHECK(keypair != NULL);
485 
486  secp256k1_write_be64(buf, nonrepeating_cnt);
487  /* keypair_sec and keypair_pub do not fail if the arguments are not NULL */
488  ret = secp256k1_keypair_sec(ctx, seckey, keypair);
489  VERIFY_CHECK(ret);
490  ret = secp256k1_keypair_pub(ctx, &pubkey, keypair);
491  VERIFY_CHECK(ret);
492 #ifndef VERIFY
493  (void) ret;
494 #endif
495 
496  if (!secp256k1_musig_nonce_gen_internal(ctx, secnonce, pubnonce, buf, seckey, &pubkey, msg32, keyagg_cache, extra_input32)) {
497  return 0;
498  }
499  secp256k1_memclear_explicit(seckey, sizeof(seckey));
500  return 1;
501 }
502 
503 static int secp256k1_musig_sum_pubnonces(const secp256k1_context* ctx, secp256k1_gej *summed_pubnonces, const secp256k1_musig_pubnonce * const* pubnonces, size_t n_pubnonces) {
504  size_t i;
505  int j;
506 
507  secp256k1_gej_set_infinity(&summed_pubnonces[0]);
508  secp256k1_gej_set_infinity(&summed_pubnonces[1]);
509 
510  for (i = 0; i < n_pubnonces; i++) {
511  secp256k1_ge nonce_pts[2];
512  if (!secp256k1_musig_pubnonce_load(ctx, nonce_pts, pubnonces[i])) {
513  return 0;
514  }
515  for (j = 0; j < 2; j++) {
516  secp256k1_gej_add_ge_var(&summed_pubnonces[j], &summed_pubnonces[j], &nonce_pts[j], NULL);
517  }
518  }
519  return 1;
520 }
521 
522 int secp256k1_musig_nonce_agg(const secp256k1_context* ctx, secp256k1_musig_aggnonce *aggnonce, const secp256k1_musig_pubnonce * const* pubnonces, size_t n_pubnonces) {
523  secp256k1_gej aggnonce_ptsj[2];
524  secp256k1_ge aggnonce_pts[2];
525  size_t i;
526 
527  VERIFY_CHECK(ctx != NULL);
528  ARG_CHECK(aggnonce != NULL);
529  ARG_CHECK(pubnonces != NULL);
530  ARG_CHECK(n_pubnonces > 0);
531  for (i = 0; i < n_pubnonces; i++) {
532  ARG_CHECK(pubnonces[i] != NULL);
533  }
534 
535  if (!secp256k1_musig_sum_pubnonces(ctx, aggnonce_ptsj, pubnonces, n_pubnonces)) {
536  return 0;
537  }
538  secp256k1_ge_set_all_gej_var(aggnonce_pts, aggnonce_ptsj, 2);
539  secp256k1_musig_aggnonce_save(aggnonce, aggnonce_pts);
540  return 1;
541 }
542 
543 /* Initializes SHA256 with fixed midstate. This midstate was computed by applying
544  * SHA256 to SHA256("MuSig/noncecoef")||SHA256("MuSig/noncecoef"). */
547  sha->s[0] = 0x2c7d5a45ul;
548  sha->s[1] = 0x06bf7e53ul;
549  sha->s[2] = 0x89be68a6ul;
550  sha->s[3] = 0x971254c0ul;
551  sha->s[4] = 0x60ac12d2ul;
552  sha->s[5] = 0x72846dcdul;
553  sha->s[6] = 0x6c81212ful;
554  sha->s[7] = 0xde7a2500ul;
555  sha->bytes = 64;
556 }
557 
558 /* tagged_hash(aggnonce[0], aggnonce[1], agg_pk, msg) */
559 static void secp256k1_musig_compute_noncehash(unsigned char *noncehash, secp256k1_ge *aggnonce, const unsigned char *agg_pk32, const unsigned char *msg) {
560  unsigned char buf[33];
561  secp256k1_sha256 sha;
562  int i;
563 
565  for (i = 0; i < 2; i++) {
566  secp256k1_musig_ge_serialize_ext(buf, &aggnonce[i]);
567  secp256k1_sha256_write(&sha, buf, sizeof(buf));
568  }
569  secp256k1_sha256_write(&sha, agg_pk32, 32);
570  secp256k1_sha256_write(&sha, msg, 32);
571  secp256k1_sha256_finalize(&sha, noncehash);
572 }
573 
574 /* out_nonce = nonce_pts[0] + b*nonce_pts[1] */
575 static void secp256k1_effective_nonce(secp256k1_gej *out_nonce, const secp256k1_ge *nonce_pts, const secp256k1_scalar *b) {
576  secp256k1_gej tmp;
577 
578  secp256k1_gej_set_ge(&tmp, &nonce_pts[1]);
579  secp256k1_ecmult(out_nonce, &tmp, b, NULL);
580  secp256k1_gej_add_ge_var(out_nonce, out_nonce, &nonce_pts[0], NULL);
581 }
582 
583 static void secp256k1_musig_nonce_process_internal(int *fin_nonce_parity, unsigned char *fin_nonce, secp256k1_scalar *b, secp256k1_ge *aggnonce_pts, const unsigned char *agg_pk32, const unsigned char *msg) {
584  unsigned char noncehash[32];
585  secp256k1_ge fin_nonce_pt;
586  secp256k1_gej fin_nonce_ptj;
587 
588  secp256k1_musig_compute_noncehash(noncehash, aggnonce_pts, agg_pk32, msg);
589  secp256k1_scalar_set_b32(b, noncehash, NULL);
590  /* fin_nonce = aggnonce_pts[0] + b*aggnonce_pts[1] */
591  secp256k1_effective_nonce(&fin_nonce_ptj, aggnonce_pts, b);
592  secp256k1_ge_set_gej(&fin_nonce_pt, &fin_nonce_ptj);
593  if (secp256k1_ge_is_infinity(&fin_nonce_pt)) {
594  fin_nonce_pt = secp256k1_ge_const_g;
595  }
596  /* fin_nonce_pt is not the point at infinity */
597  secp256k1_fe_normalize_var(&fin_nonce_pt.x);
598  secp256k1_fe_get_b32(fin_nonce, &fin_nonce_pt.x);
599  secp256k1_fe_normalize_var(&fin_nonce_pt.y);
600  *fin_nonce_parity = secp256k1_fe_is_odd(&fin_nonce_pt.y);
601 }
602 
603 int secp256k1_musig_nonce_process(const secp256k1_context* ctx, secp256k1_musig_session *session, const secp256k1_musig_aggnonce *aggnonce, const unsigned char *msg32, const secp256k1_musig_keyagg_cache *keyagg_cache) {
605  secp256k1_ge aggnonce_pts[2];
606  unsigned char fin_nonce[32];
608  unsigned char agg_pk32[32];
609 
610  VERIFY_CHECK(ctx != NULL);
611  ARG_CHECK(session != NULL);
612  ARG_CHECK(aggnonce != NULL);
613  ARG_CHECK(msg32 != NULL);
614  ARG_CHECK(keyagg_cache != NULL);
615 
616  if (!secp256k1_keyagg_cache_load(ctx, &cache_i, keyagg_cache)) {
617  return 0;
618  }
619  secp256k1_fe_get_b32(agg_pk32, &cache_i.pk.x);
620 
621  if (!secp256k1_musig_aggnonce_load(ctx, aggnonce_pts, aggnonce)) {
622  return 0;
623  }
624 
625  secp256k1_musig_nonce_process_internal(&session_i.fin_nonce_parity, fin_nonce, &session_i.noncecoef, aggnonce_pts, agg_pk32, msg32);
626  secp256k1_schnorrsig_challenge(&session_i.challenge, fin_nonce, msg32, 32, agg_pk32);
627 
628  /* If there is a tweak then set `challenge` times `tweak` to the `s`-part.*/
629  secp256k1_scalar_set_int(&session_i.s_part, 0);
630  if (!secp256k1_scalar_is_zero(&cache_i.tweak)) {
631  secp256k1_scalar e_tmp;
632  secp256k1_scalar_mul(&e_tmp, &session_i.challenge, &cache_i.tweak);
633  if (secp256k1_fe_is_odd(&cache_i.pk.y)) {
634  secp256k1_scalar_negate(&e_tmp, &e_tmp);
635  }
636  session_i.s_part = e_tmp;
637  }
638  memcpy(session_i.fin_nonce, fin_nonce, sizeof(session_i.fin_nonce));
639  secp256k1_musig_session_save(session, &session_i);
640  return 1;
641 }
642 
647 }
648 
651  secp256k1_ge pk, keypair_pk;
652  secp256k1_scalar k[2];
653  secp256k1_scalar mu, s;
656  int ret;
657 
658  VERIFY_CHECK(ctx != NULL);
659 
660  ARG_CHECK(secnonce != NULL);
661  /* Fails if the magic doesn't match */
662  ret = secp256k1_musig_secnonce_load(ctx, k, &pk, secnonce);
663  /* Set nonce to zero to avoid nonce reuse. This will cause subsequent calls
664  * of this function to fail */
665  secp256k1_memzero_explicit(secnonce, sizeof(*secnonce));
666  if (!ret) {
668  return 0;
669  }
670 
671  ARG_CHECK(partial_sig != NULL);
672  ARG_CHECK(keypair != NULL);
673  ARG_CHECK(keyagg_cache != NULL);
674  ARG_CHECK(session != NULL);
675 
676  if (!secp256k1_keypair_load(ctx, &sk, &keypair_pk, keypair)) {
678  return 0;
679  }
680  ARG_CHECK(secp256k1_fe_equal(&pk.x, &keypair_pk.x)
681  && secp256k1_fe_equal(&pk.y, &keypair_pk.y));
682  if (!secp256k1_keyagg_cache_load(ctx, &cache_i, keyagg_cache)) {
684  return 0;
685  }
686 
687  /* Negate sk if secp256k1_fe_is_odd(&cache_i.pk.y)) XOR cache_i.parity_acc.
688  * This corresponds to the line "Let d = gâ‹…gaccâ‹…d' mod n" in the
689  * specification. */
690  if ((secp256k1_fe_is_odd(&cache_i.pk.y)
691  != cache_i.parity_acc)) {
693  }
694 
695  /* Multiply KeyAgg coefficient */
696  secp256k1_musig_keyaggcoef(&mu, &cache_i, &pk);
697  secp256k1_scalar_mul(&sk, &sk, &mu);
698 
699  if (!secp256k1_musig_session_load(ctx, &session_i, session)) {
701  return 0;
702  }
703 
704  if (session_i.fin_nonce_parity) {
705  secp256k1_scalar_negate(&k[0], &k[0]);
706  secp256k1_scalar_negate(&k[1], &k[1]);
707  }
708 
709  /* Sign */
710  secp256k1_scalar_mul(&s, &session_i.challenge, &sk);
711  secp256k1_scalar_mul(&k[1], &session_i.noncecoef, &k[1]);
712  secp256k1_scalar_add(&k[0], &k[0], &k[1]);
713  secp256k1_scalar_add(&s, &s, &k[0]);
714  secp256k1_musig_partial_sig_save(partial_sig, &s);
716  return 1;
717 }
718 
722  secp256k1_scalar mu, e, s;
723  secp256k1_gej pkj;
724  secp256k1_ge nonce_pts[2];
725  secp256k1_gej rj;
726  secp256k1_gej tmp;
727  secp256k1_ge pkp;
728 
729  VERIFY_CHECK(ctx != NULL);
730  ARG_CHECK(partial_sig != NULL);
731  ARG_CHECK(pubnonce != NULL);
732  ARG_CHECK(pubkey != NULL);
733  ARG_CHECK(keyagg_cache != NULL);
734  ARG_CHECK(session != NULL);
735 
736  if (!secp256k1_musig_session_load(ctx, &session_i, session)) {
737  return 0;
738  }
739 
740  if (!secp256k1_musig_pubnonce_load(ctx, nonce_pts, pubnonce)) {
741  return 0;
742  }
743  /* Compute "effective" nonce rj = nonce_pts[0] + b*nonce_pts[1] */
744  /* TODO: use multiexp to compute -s*G + e*mu*pubkey + nonce_pts[0] + b*nonce_pts[1] */
745  secp256k1_effective_nonce(&rj, nonce_pts, &session_i.noncecoef);
746 
747  if (!secp256k1_pubkey_load(ctx, &pkp, pubkey)) {
748  return 0;
749  }
750  if (!secp256k1_keyagg_cache_load(ctx, &cache_i, keyagg_cache)) {
751  return 0;
752  }
753  /* Multiplying the challenge by the KeyAgg coefficient is equivalent
754  * to multiplying the signer's public key by the coefficient, except
755  * much easier to do. */
756  secp256k1_musig_keyaggcoef(&mu, &cache_i, &pkp);
757  secp256k1_scalar_mul(&e, &session_i.challenge, &mu);
758 
759  /* Negate e if secp256k1_fe_is_odd(&cache_i.pk.y)) XOR cache_i.parity_acc.
760  * This corresponds to the line "Let g' = gâ‹…gacc mod n" and the multiplication "g'â‹…e"
761  * in the specification. */
762  if (secp256k1_fe_is_odd(&cache_i.pk.y)
763  != cache_i.parity_acc) {
764  secp256k1_scalar_negate(&e, &e);
765  }
766 
767  if (!secp256k1_musig_partial_sig_load(ctx, &s, partial_sig)) {
768  return 0;
769  }
770  /* Compute -s*G + e*pkj + rj (e already includes the keyagg coefficient mu) */
772  secp256k1_gej_set_ge(&pkj, &pkp);
773  secp256k1_ecmult(&tmp, &pkj, &e, &s);
774  if (session_i.fin_nonce_parity) {
775  secp256k1_gej_neg(&rj, &rj);
776  }
777  secp256k1_gej_add_var(&tmp, &tmp, &rj, NULL);
778 
779  return secp256k1_gej_is_infinity(&tmp);
780 }
781 
782 int secp256k1_musig_partial_sig_agg(const secp256k1_context* ctx, unsigned char *sig64, const secp256k1_musig_session *session, const secp256k1_musig_partial_sig * const* partial_sigs, size_t n_sigs) {
783  size_t i;
785 
786  VERIFY_CHECK(ctx != NULL);
787  ARG_CHECK(sig64 != NULL);
788  ARG_CHECK(session != NULL);
789  ARG_CHECK(partial_sigs != NULL);
790  ARG_CHECK(n_sigs > 0);
791  for (i = 0; i < n_sigs; i++) {
792  ARG_CHECK(partial_sigs[i] != NULL);
793  }
794 
795  if (!secp256k1_musig_session_load(ctx, &session_i, session)) {
796  return 0;
797  }
798  for (i = 0; i < n_sigs; i++) {
799  secp256k1_scalar term;
800  if (!secp256k1_musig_partial_sig_load(ctx, &term, partial_sigs[i])) {
801  return 0;
802  }
803  secp256k1_scalar_add(&session_i.s_part, &session_i.s_part, &term);
804  }
805  secp256k1_scalar_get_b32(&sig64[32], &session_i.s_part);
806  memcpy(&sig64[0], session_i.fin_nonce, 32);
807  return 1;
808 }
809 
810 #endif
static void secp256k1_scalar_mul(secp256k1_scalar *r, const secp256k1_scalar *a, const secp256k1_scalar *b)
Multiply two scalars (modulo the group order).
static int secp256k1_ge_is_infinity(const secp256k1_ge *a)
Check whether a group element is the point at infinity.
#define VERIFY_CHECK(cond)
Definition: util.h:159
static void secp256k1_eckey_pubkey_serialize33(secp256k1_ge *elem, unsigned char *pub33)
Serialize a group element (that is not allowed to be infinity) to a compressed public key (33 bytes)...
static int secp256k1_gej_is_infinity(const secp256k1_gej *a)
Check whether a group element is the point at infinity.
This module implements BIP 327 "MuSig2 for BIP340-compatible Multi-Signatures" (https://github.com/bitcoin/bips/blob/master/bip-0327.mediawiki) v1.0.0.
int secp256k1_musig_nonce_gen_counter(const secp256k1_context *ctx, secp256k1_musig_secnonce *secnonce, secp256k1_musig_pubnonce *pubnonce, uint64_t nonrepeating_cnt, const secp256k1_keypair *keypair, const unsigned char *msg32, const secp256k1_musig_keyagg_cache *keyagg_cache, const unsigned char *extra_input32)
Alternative way to generate a nonce and start a signing session.
Definition: session_impl.h:475
int ret
int secp256k1_musig_pubnonce_serialize(const secp256k1_context *ctx, unsigned char *out66, const secp256k1_musig_pubnonce *nonce)
Serialize a signer&#39;s public nonce.
Definition: session_impl.h:208
static void secp256k1_gej_add_var(secp256k1_gej *r, const secp256k1_gej *a, const secp256k1_gej *b, secp256k1_fe *rzr)
Set r equal to the sum of a and b.
static void secp256k1_nonce_function_musig(secp256k1_scalar *k, const unsigned char *session_secrand, const unsigned char *msg32, const unsigned char *seckey32, const unsigned char *pk33, const unsigned char *agg_pk32, const unsigned char *extra_input32)
Definition: session_impl.h:339
static void secp256k1_ecmult_gen(const secp256k1_ecmult_gen_context *ctx, secp256k1_gej *r, const secp256k1_scalar *a)
Multiply with the generator: R = a*G.
unsigned int nonce
Definition: miner_tests.cpp:82
Opaque data structure that holds an aggregate public nonce.
static int secp256k1_musig_nonce_gen_internal(const secp256k1_context *ctx, secp256k1_musig_secnonce *secnonce, secp256k1_musig_pubnonce *pubnonce, const unsigned char *input_nonce, const unsigned char *seckey, const secp256k1_pubkey *pubkey, const unsigned char *msg32, const secp256k1_musig_keyagg_cache *keyagg_cache, const unsigned char *extra_input32)
Definition: session_impl.h:382
int secp256k1_musig_partial_sig_parse(const secp256k1_context *ctx, secp256k1_musig_partial_sig *sig, const unsigned char *in32)
Parse a MuSig partial signature.
Definition: session_impl.h:262
static void secp256k1_schnorrsig_challenge(secp256k1_scalar *e, const unsigned char *r32, const unsigned char *msg, size_t msglen, const unsigned char *pubkey32)
Definition: main_impl.h:119
static int secp256k1_fe_equal(const secp256k1_fe *a, const secp256k1_fe *b)
Determine whether two field elements are equal.
static void secp256k1_nonce_function_musig_sha256_tagged(secp256k1_sha256 *sha)
Definition: session_impl.h:326
static const unsigned char secp256k1_musig_session_cache_magic[4]
Definition: session_impl.h:128
SECP256K1_API int secp256k1_keypair_sec(const secp256k1_context *ctx, unsigned char *seckey, const secp256k1_keypair *keypair) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Get the secret key from a keypair.
Definition: main_impl.h:214
static void secp256k1_musig_ge_serialize_ext(unsigned char *out33, secp256k1_ge *ge)
Definition: session_impl.h:24
static void secp256k1_musig_secnonce_save(secp256k1_musig_secnonce *secnonce, const secp256k1_scalar *k, const secp256k1_ge *pk)
Definition: session_impl.h:50
static SECP256K1_INLINE void secp256k1_write_be64(unsigned char *p, uint64_t x)
Definition: util.h:444
static void secp256k1_scalar_negate(secp256k1_scalar *r, const secp256k1_scalar *a)
Compute the complement of a scalar (modulo the group order).
static void secp256k1_ge_set_all_gej_var(secp256k1_ge *r, const secp256k1_gej *a, size_t len)
Set group elements r[0:len] (affine) equal to group elements a[0:len] (jacobian). ...
static int secp256k1_scalar_is_zero(const secp256k1_scalar *a)
Check whether a scalar equals zero.
static void secp256k1_gej_neg(secp256k1_gej *r, const secp256k1_gej *a)
Set r equal to the inverse of a (i.e., mirrored around the X axis)
int secp256k1_musig_partial_sign(const secp256k1_context *ctx, secp256k1_musig_partial_sig *partial_sig, secp256k1_musig_secnonce *secnonce, const secp256k1_keypair *keypair, const secp256k1_musig_keyagg_cache *keyagg_cache, const secp256k1_musig_session *session)
Produces a partial signature.
Definition: session_impl.h:649
static void secp256k1_nonce_function_musig_helper(secp256k1_sha256 *sha, unsigned int prefix_size, const unsigned char *data, unsigned char len)
Definition: session_impl.h:292
static void secp256k1_musig_compute_noncehash(unsigned char *noncehash, secp256k1_ge *aggnonce, const unsigned char *agg_pk32, const unsigned char *msg)
Definition: session_impl.h:559
memcpy(result.begin(), stream.data(), stream.size())
static void secp256k1_scalar_set_b32(secp256k1_scalar *r, const unsigned char *bin, int *overflow)
Set a scalar from a big endian byte array.
A group element of the secp256k1 curve, in jacobian coordinates.
Definition: group.h:28
int secp256k1_musig_aggnonce_parse(const secp256k1_context *ctx, secp256k1_musig_aggnonce *nonce, const unsigned char *in66)
Parse an aggregate public nonce.
Definition: session_impl.h:227
static int secp256k1_keypair_load(const secp256k1_context *ctx, secp256k1_scalar *sk, secp256k1_ge *pk, const secp256k1_keypair *keypair)
Definition: main_impl.h:176
static void secp256k1_musig_session_save(secp256k1_musig_session *session, const secp256k1_musig_session_internal *session_i)
Definition: session_impl.h:138
static SECP256K1_INLINE int secp256k1_is_zero_array(const unsigned char *s, size_t len)
Definition: util.h:284
Opaque data structure that holds a partial MuSig signature.
static void secp256k1_gej_set_infinity(secp256k1_gej *r)
Set a group element (jacobian) equal to the point at infinity.
static void secp256k1_ge_to_bytes_ext(unsigned char *data, const secp256k1_ge *ge)
Convert a group element (that is allowed to be infinity) to a 64-byte array.
static int secp256k1_eckey_pubkey_parse(secp256k1_ge *elem, const unsigned char *pub, size_t size)
secp256k1_scalar s_part
Definition: session.h:19
static void secp256k1_gej_add_ge_var(secp256k1_gej *r, const secp256k1_gej *a, const secp256k1_ge *b, secp256k1_fe *rzr)
Set r equal to the sum of a and b (with b given in affine coordinates).
int secp256k1_musig_aggnonce_serialize(const secp256k1_context *ctx, unsigned char *out66, const secp256k1_musig_aggnonce *nonce)
Serialize an aggregate public nonce.
Definition: session_impl.h:244
static void secp256k1_ecmult(secp256k1_gej *r, const secp256k1_gej *a, const secp256k1_scalar *na, const secp256k1_scalar *ng)
Double multiply: R = na*A + ng*G.
static void secp256k1_musig_partial_sign_clear(secp256k1_scalar *sk, secp256k1_scalar *k)
Definition: session_impl.h:643
static const secp256k1_ge secp256k1_ge_const_g
Definition: group_impl.h:72
static void secp256k1_musig_keyaggcoef(secp256k1_scalar *r, const secp256k1_keyagg_cache_internal *cache_i, secp256k1_ge *pk)
static int secp256k1_musig_aggnonce_load(const secp256k1_context *ctx, secp256k1_ge *ges, const secp256k1_musig_aggnonce *nonce)
Definition: session_impl.h:118
static void secp256k1_ge_set_infinity(secp256k1_ge *r)
Set a group element (affine) equal to the point at infinity.
static int secp256k1_musig_sum_pubnonces(const secp256k1_context *ctx, secp256k1_gej *summed_pubnonces, const secp256k1_musig_pubnonce *const *pubnonces, size_t n_pubnonces)
Definition: session_impl.h:503
static SECP256K1_INLINE void secp256k1_declassify(const secp256k1_context *ctx, const void *p, size_t len)
Definition: secp256k1.c:236
uint32_t s[8]
Definition: hash.h:14
secp256k1_ecmult_gen_context ecmult_gen_ctx
Definition: secp256k1.c:62
#define ARG_CHECK(cond)
Definition: secp256k1.c:45
static void secp256k1_musig_pubnonce_save(secp256k1_musig_pubnonce *nonce, const secp256k1_ge *ges)
Definition: session_impl.h:88
static void secp256k1_ge_set_gej(secp256k1_ge *r, secp256k1_gej *a)
Set a group element equal to another which is given in jacobian coordinates.
static int secp256k1_musig_session_load(const secp256k1_context *ctx, secp256k1_musig_session_internal *session_i, const secp256k1_musig_session *session)
Definition: session_impl.h:154
static void secp256k1_gej_clear(secp256k1_gej *r)
Clear a secp256k1_gej to prevent leaking sensitive information.
static int secp256k1_ge_is_in_correct_subgroup(const secp256k1_ge *ge)
Determine if a point (which is assumed to be on the curve) is in the correct (sub)group of the curve...
unsigned char data[133]
Opaque data structure that holds a signer&#39;s secret nonce.
static int secp256k1_scalar_set_b32_seckey(secp256k1_scalar *r, const unsigned char *bin)
Set a scalar from a big endian byte array and returns 1 if it is a valid seckey and 0 otherwise...
#define secp256k1_fe_is_odd
Definition: field.h:85
static void secp256k1_sha256_clear(secp256k1_sha256 *hash)
static const unsigned char secp256k1_musig_secnonce_magic[4]
Definition: session_impl.h:48
static void secp256k1_nonce_function_musig_sha256_tagged_aux(secp256k1_sha256 *sha)
Definition: session_impl.h:311
static void secp256k1_scalar_clear(secp256k1_scalar *r)
Clear a scalar to prevent the leak of sensitive data.
A group element in affine coordinates on the secp256k1 curve, or occasionally on an isomorphic curve ...
Definition: group.h:16
secp256k1_fe x
Definition: group.h:17
static const unsigned char secp256k1_musig_partial_sig_magic[4]
Definition: session_impl.h:171
int secp256k1_musig_nonce_gen(const secp256k1_context *ctx, secp256k1_musig_secnonce *secnonce, secp256k1_musig_pubnonce *pubnonce, unsigned char *session_secrand32, const unsigned char *seckey, const secp256k1_pubkey *pubkey, const unsigned char *msg32, const secp256k1_musig_keyagg_cache *keyagg_cache, const unsigned char *extra_input32)
Starts a signing session by generating a nonce.
Definition: session_impl.h:447
static SECP256K1_INLINE void secp256k1_memzero_explicit(void *ptr, size_t len)
Definition: util.h:224
secp256k1_scalar noncecoef
Definition: session.h:17
int secp256k1_musig_nonce_agg(const secp256k1_context *ctx, secp256k1_musig_aggnonce *aggnonce, const secp256k1_musig_pubnonce *const *pubnonces, size_t n_pubnonces)
Aggregates the nonces of all signers into a single nonce.
Definition: session_impl.h:522
secp256k1_scalar tweak
Definition: keyagg.h:22
A scalar modulo the group order of the secp256k1 curve.
Definition: scalar_4x64.h:13
uint64_t bytes
Definition: hash.h:16
static void secp256k1_ge_from_bytes_ext(secp256k1_ge *ge, const unsigned char *data)
Convert a 64-byte array into a group element.
Opaque data structure that holds a keypair consisting of a secret and a public key.
static const unsigned char secp256k1_musig_aggnonce_magic[4]
Definition: session_impl.h:108
static int secp256k1_ecmult_gen_context_is_built(const secp256k1_ecmult_gen_context *ctx)
static void secp256k1_scalar_get_b32(unsigned char *bin, const secp256k1_scalar *a)
Convert a scalar to a byte array.
static void secp256k1_sha256_write(secp256k1_sha256 *hash, const unsigned char *data, size_t size)
Opaque data structure that holds a signer&#39;s public nonce.
secp256k1_scalar challenge
Definition: session.h:18
static void secp256k1_musig_nonce_process_internal(int *fin_nonce_parity, unsigned char *fin_nonce, secp256k1_scalar *b, secp256k1_ge *aggnonce_pts, const unsigned char *agg_pk32, const unsigned char *msg)
Definition: session_impl.h:583
static SECP256K1_INLINE void secp256k1_memclear_explicit(void *ptr, size_t len)
Definition: util.h:256
static SECP256K1_INLINE void secp256k1_memczero(void *s, size_t len, int flag)
Definition: util.h:208
int secp256k1_musig_nonce_process(const secp256k1_context *ctx, secp256k1_musig_session *session, const secp256k1_musig_aggnonce *aggnonce, const unsigned char *msg32, const secp256k1_musig_keyagg_cache *keyagg_cache)
Takes the aggregate nonce and creates a session that is required for signing and verification of part...
Definition: session_impl.h:603
Opaque data structure that holds a MuSig session.
static int secp256k1_musig_partial_sig_load(const secp256k1_context *ctx, secp256k1_scalar *s, const secp256k1_musig_partial_sig *sig)
Definition: session_impl.h:178
static void secp256k1_musig_partial_sig_save(secp256k1_musig_partial_sig *sig, secp256k1_scalar *s)
Definition: session_impl.h:173
static int secp256k1_scalar_add(secp256k1_scalar *r, const secp256k1_scalar *a, const secp256k1_scalar *b)
Add two scalars together (modulo the group order).
static int secp256k1_musig_pubnonce_load(const secp256k1_context *ctx, secp256k1_ge *ges, const secp256k1_musig_pubnonce *nonce)
Definition: session_impl.h:98
static void secp256k1_scalar_set_int(secp256k1_scalar *r, unsigned int v)
Set a scalar to an unsigned integer.
unsigned char data[132]
static SECP256K1_INLINE int secp256k1_memcmp_var(const void *s1, const void *s2, size_t n)
Semantics like memcmp.
Definition: util.h:269
static int secp256k1_keyagg_cache_load(const secp256k1_context *ctx, secp256k1_keyagg_cache_internal *cache_i, const secp256k1_musig_keyagg_cache *cache)
#define secp256k1_fe_normalize_var
Definition: field.h:80
int secp256k1_musig_partial_sig_serialize(const secp256k1_context *ctx, unsigned char *out32, const secp256k1_musig_partial_sig *sig)
Serialize a MuSig partial signature.
Definition: session_impl.h:281
unsigned char fin_nonce[32]
Definition: session.h:16
#define secp256k1_fe_get_b32
Definition: field.h:89
static int secp256k1_pubkey_load(const secp256k1_context *ctx, secp256k1_ge *ge, const secp256k1_pubkey *pubkey)
Definition: secp256k1.c:240
static void secp256k1_sha256_initialize(secp256k1_sha256 *hash)
SECP256K1_API int secp256k1_keypair_pub(const secp256k1_context *ctx, secp256k1_pubkey *pubkey, const secp256k1_keypair *keypair) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Get the public key from a keypair.
Definition: main_impl.h:224
static void secp256k1_effective_nonce(secp256k1_gej *out_nonce, const secp256k1_ge *nonce_pts, const secp256k1_scalar *b)
Definition: session_impl.h:575
static const unsigned char secp256k1_musig_pubnonce_magic[4]
Definition: session_impl.h:84
static void secp256k1_gej_set_ge(secp256k1_gej *r, const secp256k1_ge *a)
Set a group element (jacobian) equal to another which is given in affine coordinates.
static void secp256k1_musig_secnonce_invalidate(const secp256k1_context *ctx, secp256k1_musig_secnonce *secnonce, int flag)
Definition: session_impl.h:74
static int secp256k1_musig_secnonce_load(const secp256k1_context *ctx, secp256k1_scalar *k, secp256k1_ge *pk, const secp256k1_musig_secnonce *secnonce)
Definition: session_impl.h:57
static void secp256k1_musig_compute_noncehash_sha256_tagged(secp256k1_sha256 *sha)
Definition: session_impl.h:545
int secp256k1_musig_partial_sig_agg(const secp256k1_context *ctx, unsigned char *sig64, const secp256k1_musig_session *session, const secp256k1_musig_partial_sig *const *partial_sigs, size_t n_sigs)
Aggregates partial signatures.
Definition: session_impl.h:782
secp256k1_fe y
Definition: group.h:18
static void secp256k1_ge_set_all_gej(secp256k1_ge *r, const secp256k1_gej *a, size_t len)
Set group elements r[0:len] (affine) equal to group elements a[0:len] (jacobian). ...
int secp256k1_musig_pubnonce_parse(const secp256k1_context *ctx, secp256k1_musig_pubnonce *nonce, const unsigned char *in66)
Parse a signer&#39;s public nonce.
Definition: session_impl.h:188
static void secp256k1_musig_aggnonce_save(secp256k1_musig_aggnonce *nonce, const secp256k1_ge *ges)
Definition: session_impl.h:110
static void secp256k1_ge_to_bytes(unsigned char *buf, const secp256k1_ge *a)
Convert a group element that is not infinity to a 64-byte array.
static int secp256k1_musig_ge_parse_ext(secp256k1_ge *ge, const unsigned char *in33)
Definition: session_impl.h:35
static void secp256k1_sha256_finalize(secp256k1_sha256 *hash, unsigned char *out32)
int secp256k1_musig_partial_sig_verify(const secp256k1_context *ctx, const secp256k1_musig_partial_sig *partial_sig, const secp256k1_musig_pubnonce *pubnonce, const secp256k1_pubkey *pubkey, const secp256k1_musig_keyagg_cache *keyagg_cache, const secp256k1_musig_session *session)
Verifies an individual signer&#39;s partial signature.
Definition: session_impl.h:719
static void secp256k1_ge_from_bytes(secp256k1_ge *r, const unsigned char *buf)
Convert a 64-byte array into group element.
Opaque data structure that holds a parsed and valid public key.
Definition: secp256k1.h:61