public class BLS12_381Pairing
extends java.lang.Object
e: G1 x G2 -> GT where GT is the order-r subgroup of Fp^12 ^*.
This implementation favours obvious correctness over performance:
E(Fp^12) via the D-twist isomorphism
(x', y') -> (x'/w^2, y'/w^3).E(Fp^12) and computes the line evaluations as
full (non-sparse) Fp^12 elements.(p^12 - 1) / r, sidestepping the
Frobenius-coefficient infrastructure that the spec-recommended
easy/hard-part split would need.| Modifier and Type | Field and Description |
|---|---|
static java.math.BigInteger |
HARD_EXPONENT
Hard-part exponent
(p^4 - p^2 + 1) / r (~1269 bits), applied
after the Frobenius-based easy part. |
| Modifier and Type | Method and Description |
|---|---|
static Fp12Element |
hardPart(Fp12Element f)
The hard part of the final exponentiation, exposed for cross-package
layered testing (the test classes live in
org.bouncycastle.crypto.hash2curve.test and need direct access
to the easy/hard split for KAT comparison against reference outputs). |
static Fp12Element |
multiPair(ECPoint[] g1Points,
BLS12_381G2Point[] g2Points)
Multi-pairing: compute the product
e(P_0, Q_0) * e(P_1, Q_1) * ... * e(P_{n-1}, Q_{n-1}) with a
single shared Miller loop and a single final exponentiation. |
static Fp12Element |
pair(ECPoint g1,
BLS12_381G2Point g2)
Compute the optimal ate pairing
e(P, Q) for P on
BLS12-381 G1 and Q on BLS12-381 G2. |
public static final java.math.BigInteger HARD_EXPONENT
(p^4 - p^2 + 1) / r (~1269 bits), applied
after the Frobenius-based easy part. The full final exponent
(p^12 - 1) / r (~4317 bits) factors as
(p^6 - 1) * (p^2 + 1) * (p^4 - p^2 + 1) / r; the easy part
computes f^((p^6 - 1)(p^2 + 1)) essentially for free using
conjugation and one Frobenius² application, leaving only this
shorter exponent for Fp12Element.modPow(java.math.BigInteger).public static Fp12Element pair(ECPoint g1, BLS12_381G2Point g2)
e(P, Q) for P on
BLS12-381 G1 and Q on BLS12-381 G2.g1 - a point on the BLS12-381 G1 curve. Must be in the
prime-order subgroup; this method does not subgroup-check.g2 - a point on the BLS12-381 G2 curve. Must be in the
prime-order subgroup; this method does not subgroup-check.e(P, Q) as an Fp^12 element in the order-r subgroup of
Fp^12 ^*. Returns 1 if either input is the point at infinity.public static Fp12Element multiPair(ECPoint[] g1Points, BLS12_381G2Point[] g2Points)
e(P_0, Q_0) * e(P_1, Q_1) * ... * e(P_{n-1}, Q_{n-1}) with a
single shared Miller loop and a single final exponentiation. This
cuts a 2-pairing verification (e.g. BLS signature verify) to
roughly the cost of one pair() call, since the dominant final
exponentiation is performed only once.
Pairs whose G1 or G2 component is the point at infinity are skipped
(their pairing value is 1, identity in GT). If all pairs are skipped,
the result is Fp12Element.ONE.
g1Points - G1 inputs.g2Points - G2 inputs; must be the same length as g1Points.java.lang.IllegalArgumentException - if the arrays differ in length.public static Fp12Element hardPart(Fp12Element f)
org.bouncycastle.crypto.hash2curve.test and need direct access
to the easy/hard split for KAT comparison against reference outputs).
Not part of the intended public API of this class — production callers
should use pair(org.bouncycastle.math.ec.ECPoint, org.bouncycastle.crypto.bls.BLS12_381G2Point) / multiPair(org.bouncycastle.math.ec.ECPoint[], org.bouncycastle.crypto.bls.BLS12_381G2Point[]).