Class BLS12_381Pairing
java.lang.Object
org.bouncycastle.crypto.bls.BLS12_381Pairing
Optimal ate pairing on BLS12-381: a bilinear, non-degenerate map
e: G1 x G2 -> GT where GT is the order-r subgroup of Fp^12 ^*.
This implementation favours obvious correctness over performance:
- G2 is lifted into
E(Fp^12)via the D-twist isomorphism(x', y') -> (x'/w^2, y'/w^3). - The Miller loop runs the textbook affine doubling / addition
formulas on
E(Fp^12)and computes the line evaluations as full (non-sparse) Fp^12 elements. - The final exponentiation is performed as a single Fp^12 modPow with
exponent
(p^12 - 1) / r, sidestepping the Frobenius-coefficient infrastructure that the spec-recommended easy/hard-part split would need.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final BigIntegerHard-part exponent(p^4 - p^2 + 1) / r(~1269 bits), applied after the Frobenius-based easy part. -
Method Summary
Modifier and TypeMethodDescriptionstatic Fp12ElementThe hard part of the final exponentiation, exposed for cross-package layered testing (the test classes live inorg.bouncycastle.crypto.hash2curve.testand need direct access to the easy/hard split for KAT comparison against reference outputs).static Fp12ElementmultiPair(ECPoint[] g1Points, BLS12_381G2Point[] g2Points) Multi-pairing: compute the producte(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 Fp12Elementpair(ECPoint g1, BLS12_381G2Point g2) Compute the optimal ate pairinge(P, Q)forPon BLS12-381 G1 andQon BLS12-381 G2.
-
Field Details
-
HARD_EXPONENT
Hard-part 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 computesf^((p^6 - 1)(p^2 + 1))essentially for free using conjugation and one Frobenius² application, leaving only this shorter exponent forFp12Element.modPow(BigInteger).
-
-
Method Details
-
pair
Compute the optimal ate pairinge(P, Q)forPon BLS12-381 G1 andQon BLS12-381 G2.- Parameters:
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.- Returns:
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.
-
multiPair
Multi-pairing: compute the producte(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.- Parameters:
g1Points- G1 inputs.g2Points- G2 inputs; must be the same length asg1Points.- Returns:
- the product of pairings as an element of GT.
- Throws:
IllegalArgumentException- if the arrays differ in length.
-
hardPart
The hard part of the final exponentiation, exposed for cross-package layered testing (the test classes live inorg.bouncycastle.crypto.hash2curve.testand 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 usepair(ECPoint, BLS12_381G2Point)/multiPair(ECPoint[], BLS12_381G2Point[]).
-