@@ -562,20 +562,24 @@ static void secp256k1_musig_compute_noncehash(unsigned char *noncehash, secp256k
562
562
secp256k1_sha256_finalize (& sha , noncehash );
563
563
}
564
564
565
+ static void compute_nonce_from_points_and_coeff (secp256k1_gej * noncej , const secp256k1_ge * noncepoints , const secp256k1_scalar * b ) {
566
+ secp256k1_gej noncepoint2j ;
567
+
568
+ /* nonce = noncepoints[0] + b*noncepoints[1] */
569
+ secp256k1_gej_set_ge (& noncepoint2j , & noncepoints [1 ]);
570
+ secp256k1_ecmult (noncej , & noncepoint2j , b , NULL );
571
+ secp256k1_gej_add_ge_var (noncej , noncej , & noncepoints [0 ], NULL );
572
+ }
573
+
565
574
static int secp256k1_musig_nonce_process_internal (int * fin_nonce_parity , unsigned char * fin_nonce , secp256k1_scalar * b , secp256k1_ge * aggnonce , const unsigned char * agg_pk32 , const unsigned char * msg ) {
566
575
unsigned char noncehash [32 ];
567
576
secp256k1_ge fin_nonce_pt ;
568
577
secp256k1_gej fin_nonce_ptj ;
569
- secp256k1_gej aggnoncej [2 ];
570
578
571
579
secp256k1_musig_compute_noncehash (noncehash , aggnonce , agg_pk32 , msg );
572
- secp256k1_gej_set_ge (& aggnoncej [0 ], & aggnonce [0 ]);
573
- secp256k1_gej_set_ge (& aggnoncej [1 ], & aggnonce [1 ]);
574
580
/* fin_nonce = aggnonce[0] + b*aggnonce[1] */
575
581
secp256k1_scalar_set_b32 (b , noncehash , NULL );
576
- secp256k1_gej_set_infinity (& fin_nonce_ptj );
577
- secp256k1_ecmult (& fin_nonce_ptj , & aggnoncej [1 ], b , NULL );
578
- secp256k1_gej_add_ge_var (& fin_nonce_ptj , & fin_nonce_ptj , & aggnonce [0 ], NULL );
582
+ compute_nonce_from_points_and_coeff (& fin_nonce_ptj , aggnonce , b );
579
583
secp256k1_ge_set_gej (& fin_nonce_pt , & fin_nonce_ptj );
580
584
if (secp256k1_ge_is_infinity (& fin_nonce_pt )) {
581
585
fin_nonce_pt = secp256k1_ge_const_g ;
@@ -734,9 +738,7 @@ int secp256k1_musig_partial_sig_verify(const secp256k1_context* ctx, const secp2
734
738
if (!secp256k1_musig_pubnonce_load (ctx , nonce_pt , pubnonce )) {
735
739
return 0 ;
736
740
}
737
- secp256k1_gej_set_ge (& rj , & nonce_pt [1 ]);
738
- secp256k1_ecmult (& rj , & rj , & session_i .noncecoef , NULL );
739
- secp256k1_gej_add_ge_var (& rj , & rj , & nonce_pt [0 ], NULL );
741
+ compute_nonce_from_points_and_coeff (& rj , nonce_pt , & session_i .noncecoef );
740
742
741
743
if (!secp256k1_pubkey_load (ctx , & pkp , pubkey )) {
742
744
return 0 ;
0 commit comments