File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -62,9 +62,12 @@ static int secp256k1_ge_is_valid_var(const secp256k1_ge *a);
62
62
/** Set r equal to the inverse of a (i.e., mirrored around the X axis) */
63
63
static void secp256k1_ge_neg (secp256k1_ge * r , const secp256k1_ge * a );
64
64
65
- /** Set a group element equal to another which is given in jacobian coordinates */
65
+ /** Set a group element equal to another which is given in jacobian coordinates. Constant time. */
66
66
static void secp256k1_ge_set_gej (secp256k1_ge * r , secp256k1_gej * a );
67
67
68
+ /** Set a group element equal to another which is given in jacobian coordinates. */
69
+ static void secp256k1_ge_set_gej_var (secp256k1_ge * r , secp256k1_gej * a );
70
+
68
71
/** Set a batch of group elements equal to the inputs given in jacobian coordinates */
69
72
static void secp256k1_ge_set_all_gej_var (secp256k1_ge * r , const secp256k1_gej * a , size_t len );
70
73
You can’t perform that action at this time.
0 commit comments