2020-12-17 08:33:49 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* Copyright (c) 2015 Andrew Poelstra *
|
|
|
|
* Distributed under the MIT software license, see the accompanying *
|
|
|
|
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
|
|
|
|
***********************************************************************/
|
2015-05-13 17:31:47 -05:00
|
|
|
|
2017-08-26 18:44:21 +03:00
|
|
|
#ifndef SECP256K1_ECMULT_CONST_H
|
|
|
|
#define SECP256K1_ECMULT_CONST_H
|
2015-05-13 17:31:47 -05:00
|
|
|
|
|
|
|
#include "scalar.h"
|
|
|
|
#include "group.h"
|
|
|
|
|
2019-06-04 01:52:44 +00:00
|
|
|
/**
|
|
|
|
* Multiply: R = q*A (in constant-time)
|
|
|
|
* Here `bits` should be set to the maximum bitlength of the _absolute value_ of `q`, plus
|
|
|
|
* one because we internally sometimes add 2 to the number during the WNAF conversion.
|
2021-12-03 13:57:38 -05:00
|
|
|
* A must not be infinity.
|
2019-06-04 01:52:44 +00:00
|
|
|
*/
|
2018-03-13 16:32:51 +00:00
|
|
|
static void secp256k1_ecmult_const(secp256k1_gej *r, const secp256k1_ge *a, const secp256k1_scalar *q, int bits);
|
2015-05-13 17:31:47 -05:00
|
|
|
|
2022-07-03 13:51:28 -04:00
|
|
|
/**
|
|
|
|
* Same as secp256k1_ecmult_const, but takes in an x coordinate of the base point
|
|
|
|
* only, specified as fraction n/d (numerator/denominator). Only the x coordinate of the result is
|
|
|
|
* returned.
|
|
|
|
*
|
|
|
|
* If known_on_curve is 0, a verification is performed that n/d is a valid X
|
|
|
|
* coordinate, and 0 is returned if not. Otherwise, 1 is returned.
|
|
|
|
*
|
|
|
|
* d being NULL is interpreted as d=1. If non-NULL, d must not be zero. q must not be zero.
|
|
|
|
*
|
|
|
|
* Constant time in the value of q, but not any other inputs.
|
|
|
|
*/
|
|
|
|
static int secp256k1_ecmult_const_xonly(
|
|
|
|
secp256k1_fe *r,
|
|
|
|
const secp256k1_fe *n,
|
|
|
|
const secp256k1_fe *d,
|
|
|
|
const secp256k1_scalar *q,
|
|
|
|
int bits,
|
|
|
|
int known_on_curve
|
|
|
|
);
|
|
|
|
|
2017-08-26 18:44:21 +03:00
|
|
|
#endif /* SECP256K1_ECMULT_CONST_H */
|