2020-12-29 17:15:51 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* Copyright (c) 2013, 2014 Pieter Wuille *
|
|
|
|
* Distributed under the MIT software license, see the accompanying *
|
|
|
|
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
|
|
|
|
***********************************************************************/
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2018-07-09 11:17:44 +00:00
|
|
|
#ifndef SECP256K1_FIELD_H
|
|
|
|
#define SECP256K1_FIELD_H
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Field element module.
|
|
|
|
*
|
|
|
|
* Field elements can be represented in several ways, but code accessing
|
2016-01-14 18:35:54 +00:00
|
|
|
* it (and implementations) need to take certain properties into account:
|
2015-10-26 14:54:21 +00:00
|
|
|
* - Each field element can be normalized or not.
|
|
|
|
* - Each field element has a magnitude, which represents how far away
|
|
|
|
* its representation is away from normalization. Normalized elements
|
2022-03-08 19:45:41 +00:00
|
|
|
* always have a magnitude of 0 or 1, but a magnitude of 1 doesn't
|
|
|
|
* imply normality.
|
2015-10-26 14:54:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined HAVE_CONFIG_H
|
|
|
|
#include "libsecp256k1-config.h"
|
|
|
|
#endif
|
|
|
|
|
2020-08-26 17:35:27 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
#if defined(SECP256K1_WIDEMUL_INT128)
|
2015-10-26 14:54:21 +00:00
|
|
|
#include "field_5x52.h"
|
2020-08-26 17:35:27 +00:00
|
|
|
#elif defined(SECP256K1_WIDEMUL_INT64)
|
|
|
|
#include "field_10x26.h"
|
2015-10-26 14:54:21 +00:00
|
|
|
#else
|
2020-08-26 17:35:27 +00:00
|
|
|
#error "Please select wide multiplication implementation"
|
2015-10-26 14:54:21 +00:00
|
|
|
#endif
|
|
|
|
|
2020-08-26 17:35:27 +00:00
|
|
|
/** Normalize a field element. This brings the field element to a canonical representation, reduces
|
|
|
|
* its magnitude to 1, and reduces it modulo field size `p`.
|
|
|
|
*/
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_normalize(rustsecp256k1_v0_5_0_fe *r);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2020-08-26 17:35:27 +00:00
|
|
|
/** Weakly normalize a field element: reduce its magnitude to 1, but don't fully normalize. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_normalize_weak(rustsecp256k1_v0_5_0_fe *r);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Normalize a field element, without constant-time guarantee. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_normalize_var(rustsecp256k1_v0_5_0_fe *r);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2021-06-14 14:55:38 +00:00
|
|
|
/** Verify whether a field element represents zero i.e. would normalize to a zero value. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static int rustsecp256k1_v0_5_0_fe_normalizes_to_zero(const rustsecp256k1_v0_5_0_fe *r);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2021-06-14 14:55:38 +00:00
|
|
|
/** Verify whether a field element represents zero i.e. would normalize to a zero value,
|
|
|
|
* without constant-time guarantee. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static int rustsecp256k1_v0_5_0_fe_normalizes_to_zero_var(const rustsecp256k1_v0_5_0_fe *r);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2022-03-08 19:45:41 +00:00
|
|
|
/** Set a field element equal to a small (not greater than 0x7FFF), non-negative integer.
|
|
|
|
* Resulting field element is normalized; it has magnitude 0 if a == 0, and magnitude 1 otherwise.
|
|
|
|
*/
|
|
|
|
static void rustsecp256k1_v0_5_0_fe_set_int(rustsecp256k1_v0_5_0_fe *r, int a);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2018-07-09 11:17:44 +00:00
|
|
|
/** Sets a field element equal to zero, initializing all fields. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_clear(rustsecp256k1_v0_5_0_fe *a);
|
2018-07-09 11:17:44 +00:00
|
|
|
|
2015-10-26 14:54:21 +00:00
|
|
|
/** Verify whether a field element is zero. Requires the input to be normalized. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static int rustsecp256k1_v0_5_0_fe_is_zero(const rustsecp256k1_v0_5_0_fe *a);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Check the "oddness" of a field element. Requires the input to be normalized. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static int rustsecp256k1_v0_5_0_fe_is_odd(const rustsecp256k1_v0_5_0_fe *a);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Compare two field elements. Requires magnitude-1 inputs. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static int rustsecp256k1_v0_5_0_fe_equal(const rustsecp256k1_v0_5_0_fe *a, const rustsecp256k1_v0_5_0_fe *b);
|
2018-07-09 11:17:44 +00:00
|
|
|
|
2022-03-08 19:45:41 +00:00
|
|
|
/** Same as rustsecp256k1_v0_5_0_fe_equal, but may be variable time. */
|
|
|
|
static int rustsecp256k1_v0_5_0_fe_equal_var(const rustsecp256k1_v0_5_0_fe *a, const rustsecp256k1_v0_5_0_fe *b);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Compare two field elements. Requires both inputs to be normalized */
|
2022-03-08 19:45:41 +00:00
|
|
|
static int rustsecp256k1_v0_5_0_fe_cmp_var(const rustsecp256k1_v0_5_0_fe *a, const rustsecp256k1_v0_5_0_fe *b);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Set a field element equal to 32-byte big endian value. If successful, the resulting field element is normalized. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static int rustsecp256k1_v0_5_0_fe_set_b32(rustsecp256k1_v0_5_0_fe *r, const unsigned char *a);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Convert a field element to a 32-byte big endian value. Requires the input to be normalized */
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_get_b32(unsigned char *r, const rustsecp256k1_v0_5_0_fe *a);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Set a field element equal to the additive inverse of another. Takes a maximum magnitude of the input
|
|
|
|
* as an argument. The magnitude of the output is one higher. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_negate(rustsecp256k1_v0_5_0_fe *r, const rustsecp256k1_v0_5_0_fe *a, int m);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Multiplies the passed field element with a small integer constant. Multiplies the magnitude by that
|
|
|
|
* small integer. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_mul_int(rustsecp256k1_v0_5_0_fe *r, int a);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Adds a field element to another. The result has the sum of the inputs' magnitudes as magnitude. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_add(rustsecp256k1_v0_5_0_fe *r, const rustsecp256k1_v0_5_0_fe *a);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Sets a field element to be the product of two others. Requires the inputs' magnitudes to be at most 8.
|
|
|
|
* The output magnitude is 1 (but not guaranteed to be normalized). */
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_mul(rustsecp256k1_v0_5_0_fe *r, const rustsecp256k1_v0_5_0_fe *a, const rustsecp256k1_v0_5_0_fe * SECP256K1_RESTRICT b);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Sets a field element to be the square of another. Requires the input's magnitude to be at most 8.
|
|
|
|
* The output magnitude is 1 (but not guaranteed to be normalized). */
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_sqr(rustsecp256k1_v0_5_0_fe *r, const rustsecp256k1_v0_5_0_fe *a);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2016-01-14 18:35:54 +00:00
|
|
|
/** If a has a square root, it is computed in r and 1 is returned. If a does not
|
|
|
|
* have a square root, the root of its negation is computed and 0 is returned.
|
|
|
|
* The input's magnitude can be at most 8. The output magnitude is 1 (but not
|
|
|
|
* guaranteed to be normalized). The result in r will always be a square
|
|
|
|
* itself. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static int rustsecp256k1_v0_5_0_fe_sqrt(rustsecp256k1_v0_5_0_fe *r, const rustsecp256k1_v0_5_0_fe *a);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Sets a field element to be the (modular) inverse of another. Requires the input's magnitude to be
|
|
|
|
* at most 8. The output magnitude is 1 (but not guaranteed to be normalized). */
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_inv(rustsecp256k1_v0_5_0_fe *r, const rustsecp256k1_v0_5_0_fe *a);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2022-03-08 19:45:41 +00:00
|
|
|
/** Potentially faster version of rustsecp256k1_v0_5_0_fe_inv, without constant-time guarantee. */
|
|
|
|
static void rustsecp256k1_v0_5_0_fe_inv_var(rustsecp256k1_v0_5_0_fe *r, const rustsecp256k1_v0_5_0_fe *a);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Convert a field element to the storage type. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_to_storage(rustsecp256k1_v0_5_0_fe_storage *r, const rustsecp256k1_v0_5_0_fe *a);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/** Convert a field element back from the storage type. */
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_from_storage(rustsecp256k1_v0_5_0_fe *r, const rustsecp256k1_v0_5_0_fe_storage *a);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2020-08-26 17:35:27 +00:00
|
|
|
/** If flag is true, set *r equal to *a; otherwise leave it. Constant-time. Both *r and *a must be initialized.*/
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_storage_cmov(rustsecp256k1_v0_5_0_fe_storage *r, const rustsecp256k1_v0_5_0_fe_storage *a, int flag);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2020-08-26 17:35:27 +00:00
|
|
|
/** If flag is true, set *r equal to *a; otherwise leave it. Constant-time. Both *r and *a must be initialized.*/
|
2022-03-08 19:45:41 +00:00
|
|
|
static void rustsecp256k1_v0_5_0_fe_cmov(rustsecp256k1_v0_5_0_fe *r, const rustsecp256k1_v0_5_0_fe *a, int flag);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2018-07-09 11:17:44 +00:00
|
|
|
#endif /* SECP256K1_FIELD_H */
|