231 lines
6.7 KiB
C
231 lines
6.7 KiB
C
|
/*
|
||
|
* Copyright (c) 2012-2020 MIRACL UK Ltd.
|
||
|
*
|
||
|
* This file is part of MIRACL Core
|
||
|
* (see https://github.com/miracl/core).
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
|
||
|
#ifndef FP12_BLS12443_H
|
||
|
#define FP12_BLS12443_H
|
||
|
|
||
|
#include "fp4_BLS12443.h"
|
||
|
|
||
|
using namespace core;
|
||
|
|
||
|
namespace BLS12443 {
|
||
|
/**
|
||
|
@brief FP12 Structure - towered over three FP4
|
||
|
*/
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
FP4 a; /**< first part of FP12 */
|
||
|
FP4 b; /**< second part of FP12 */
|
||
|
FP4 c; /**< third part of FP12 */
|
||
|
int type;
|
||
|
} FP12;
|
||
|
|
||
|
extern const B448_29::BIG Fra; /**< real part of BN curve Frobenius Constant */
|
||
|
extern const B448_29::BIG Frb; /**< imaginary part of BN curve Frobenius Constant */
|
||
|
|
||
|
/* FP12 prototypes */
|
||
|
/** @brief Tests for FP12 equal to zero
|
||
|
*
|
||
|
@param x FP12 number to be tested
|
||
|
@return 1 if zero, else returns 0
|
||
|
*/
|
||
|
extern int FP12_iszilch(FP12 *x);
|
||
|
/** @brief Tests for FP12 equal to unity
|
||
|
*
|
||
|
@param x FP12 number to be tested
|
||
|
@return 1 if unity, else returns 0
|
||
|
*/
|
||
|
extern int FP12_isunity(FP12 *x);
|
||
|
/** @brief Copy FP12 to another FP12
|
||
|
*
|
||
|
@param x FP12 instance, on exit = y
|
||
|
@param y FP12 instance to be copied
|
||
|
*/
|
||
|
extern void FP12_copy(FP12 *x, FP12 *y);
|
||
|
/** @brief Set FP12 to unity
|
||
|
*
|
||
|
@param x FP12 instance to be set to one
|
||
|
*/
|
||
|
extern void FP12_one(FP12 *x);
|
||
|
|
||
|
/** @brief Set FP12 to zero
|
||
|
*
|
||
|
@param x FP12 instance to be set to zero
|
||
|
*/
|
||
|
extern void FP12_zero(FP12 *x);
|
||
|
|
||
|
/** @brief Tests for equality of two FP12s
|
||
|
*
|
||
|
@param x FP12 instance to be compared
|
||
|
@param y FP12 instance to be compared
|
||
|
@return 1 if x=y, else returns 0
|
||
|
*/
|
||
|
extern int FP12_equals(FP12 *x, FP12 *y);
|
||
|
/** @brief Conjugation of FP12
|
||
|
*
|
||
|
If y=(a,b,c) (where a,b,c are its three FP4 components) on exit x=(conj(a),-conj(b),conj(c))
|
||
|
@param x FP12 instance, on exit = conj(y)
|
||
|
@param y FP12 instance
|
||
|
*/
|
||
|
extern void FP12_conj(FP12 *x, FP12 *y);
|
||
|
/** @brief Initialise FP12 from single FP4
|
||
|
*
|
||
|
Sets first FP4 component of an FP12, other components set to zero
|
||
|
@param x FP12 instance to be initialised
|
||
|
@param a FP4 to form first part of FP4
|
||
|
*/
|
||
|
extern void FP12_from_FP4(FP12 *x, FP4 *a);
|
||
|
/** @brief Initialise FP12 from three FP4s
|
||
|
*
|
||
|
@param x FP12 instance to be initialised
|
||
|
@param a FP4 to form first part of FP12
|
||
|
@param b FP4 to form second part of FP12
|
||
|
@param c FP4 to form third part of FP12
|
||
|
*/
|
||
|
extern void FP12_from_FP4s(FP12 *x, FP4 *a, FP4* b, FP4 *c);
|
||
|
/** @brief Fast Squaring of an FP12 in "unitary" form
|
||
|
*
|
||
|
@param x FP12 instance, on exit = y^2
|
||
|
@param y FP4 instance, must be unitary
|
||
|
*/
|
||
|
extern void FP12_usqr(FP12 *x, FP12 *y);
|
||
|
/** @brief Squaring an FP12
|
||
|
*
|
||
|
@param x FP12 instance, on exit = y^2
|
||
|
@param y FP12 instance
|
||
|
*/
|
||
|
extern void FP12_sqr(FP12 *x, FP12 *y);
|
||
|
/** @brief Fast multiplication of two sparse FP12s that arises from ATE pairing line functions
|
||
|
*
|
||
|
@param x FP12 instance, on exit = x*y
|
||
|
@param y FP12 instance, of special form
|
||
|
*/
|
||
|
extern void FP12_smul(FP12 *x, FP12 *y);
|
||
|
|
||
|
/** @brief Fast multiplication of what may be sparse multiplicands
|
||
|
*
|
||
|
@param x FP12 instance, on exit = x*y
|
||
|
@param y FP12 instance, of special form
|
||
|
*/
|
||
|
extern void FP12_ssmul(FP12 *x, FP12 *y);
|
||
|
|
||
|
|
||
|
/** @brief Full unconditional Multiplication of two FP12s
|
||
|
*
|
||
|
@param x FP12 instance, on exit = x*y
|
||
|
@param y FP12 instance, the multiplier
|
||
|
*/
|
||
|
extern void FP12_mul(FP12 *x, FP12 *y);
|
||
|
|
||
|
/** @brief Inverting an FP12
|
||
|
*
|
||
|
@param x FP12 instance, on exit = 1/y
|
||
|
@param y FP12 instance
|
||
|
@param t D_TYPE or M_TYPE twist
|
||
|
*/
|
||
|
extern void FP12_inv(FP12 *x, FP12 *y);
|
||
|
/** @brief Raises an FP12 to the power of a BIG
|
||
|
*
|
||
|
@param r FP12 instance, on exit = y^b
|
||
|
@param x FP12 instance
|
||
|
@param b BIG number
|
||
|
*/
|
||
|
extern void FP12_pow(FP12 *r, FP12 *x, B448_29::BIG b);
|
||
|
/** @brief Raises an FP12 instance x to a small integer power, side-channel resistant
|
||
|
*
|
||
|
@param x FP12 instance, on exit = x^i
|
||
|
@param i small integer exponent
|
||
|
@param b maximum number of bits in exponent
|
||
|
*/
|
||
|
extern void FP12_pinpow(FP12 *x, int i, int b);
|
||
|
|
||
|
/** @brief Raises an FP12 instance x to a BIG power, compressed to FP4
|
||
|
*
|
||
|
@param c FP4 instance, on exit = x^(e mod r) as FP4
|
||
|
@param x FP12 input
|
||
|
@param e BIG exponent
|
||
|
@param r BIG group order
|
||
|
*/
|
||
|
extern void FP12_compow(FP4 *c, FP12 *x, B448_29::BIG e, B448_29::BIG r);
|
||
|
|
||
|
/** @brief Calculate x[0]^b[0].x[1]^b[1].x[2]^b[2].x[3]^b[3], side-channel resistant
|
||
|
*
|
||
|
@param r FP12 instance, on exit = x[0]^b[0].x[1]^b[1].x[2]^b[2].x[3]^b[3]
|
||
|
@param x FP12 array with 4 FP12s
|
||
|
@param b BIG array of 4 exponents
|
||
|
*/
|
||
|
extern void FP12_pow4(FP12 *r, FP12 *x, B448_29::BIG *b);
|
||
|
/** @brief Raises an FP12 to the power of the internal modulus p, using the Frobenius
|
||
|
*
|
||
|
@param x FP12 instance, on exit = x^p
|
||
|
@param f FP2 precalculated Frobenius constant
|
||
|
*/
|
||
|
extern void FP12_frob(FP12 *x, FP2 *f);
|
||
|
/** @brief Reduces all components of possibly unreduced FP12 mod Modulus
|
||
|
*
|
||
|
@param x FP12 instance, on exit reduced mod Modulus
|
||
|
*/
|
||
|
extern void FP12_reduce(FP12 *x);
|
||
|
/** @brief Normalises the components of an FP12
|
||
|
*
|
||
|
@param x FP12 instance to be normalised
|
||
|
*/
|
||
|
extern void FP12_norm(FP12 *x);
|
||
|
/** @brief Formats and outputs an FP12 to the console
|
||
|
*
|
||
|
@param x FP12 instance to be printed
|
||
|
*/
|
||
|
extern void FP12_output(FP12 *x);
|
||
|
/** @brief Formats and outputs an FP12 instance to an octet string
|
||
|
*
|
||
|
Serializes the components of an FP12 to big-endian base 256 form.
|
||
|
@param S output octet string
|
||
|
@param x FP12 instance to be converted to an octet string
|
||
|
*/
|
||
|
extern void FP12_toOctet(octet *S, FP12 *x);
|
||
|
/** @brief Creates an FP12 instance from an octet string
|
||
|
*
|
||
|
De-serializes the components of an FP12 to create an FP12 from big-endian base 256 components.
|
||
|
@param x FP12 instance to be created from an octet string
|
||
|
@param S input octet string
|
||
|
|
||
|
*/
|
||
|
extern void FP12_fromOctet(FP12 *x, octet *S);
|
||
|
/** @brief Calculate the trace of an FP12
|
||
|
*
|
||
|
@param t FP4 trace of x, on exit = tr(x)
|
||
|
@param x FP12 instance
|
||
|
|
||
|
*/
|
||
|
extern void FP12_trace(FP4 *t, FP12 *x);
|
||
|
|
||
|
/** @brief Conditional copy of FP12 number
|
||
|
*
|
||
|
Conditionally copies second parameter to the first (without branching)
|
||
|
@param x FP12 instance, set to y if s!=0
|
||
|
@param y another FP12 instance
|
||
|
@param s copy only takes place if not equal to 0
|
||
|
*/
|
||
|
extern void FP12_cmove(FP12 *x, FP12 *y, int s);
|
||
|
|
||
|
|
||
|
}
|
||
|
#endif
|