elliptic-curve-0.3.0: src/Data/Curve/Weierstrass/BN254.hs
module Data.Curve.Weierstrass.BN254
( module Data.Curve.Weierstrass
, Point(..)
-- * BN254 curve
, module Data.Curve.Weierstrass.BN254
) where
import Protolude
import Data.Field.Galois
import GHC.Natural (Natural)
import Data.Curve.Weierstrass
-------------------------------------------------------------------------------
-- Types
-------------------------------------------------------------------------------
-- | BN254 curve.
data BN254
-- | Field of points of BN254 curve.
type Fq = Prime Q
type Q = 0x30644e72e131a029b85045b68181585d97816a916871ca8d3c208c16d87cfd47
-- | Field of coefficients of BN254 curve.
type Fr = Prime R
type R = 0x30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f0000001
-- BN254 curve is a Weierstrass curve.
instance Curve 'Weierstrass c BN254 Fq Fr => WCurve c BN254 Fq Fr where
a_ = const _a
{-# INLINABLE a_ #-}
b_ = const _b
{-# INLINABLE b_ #-}
h_ = const _h
{-# INLINABLE h_ #-}
q_ = const _q
{-# INLINABLE q_ #-}
r_ = const _r
{-# INLINABLE r_ #-}
-- | Affine BN254 curve point.
type PA = WAPoint BN254 Fq Fr
-- Affine BN254 curve is a Weierstrass affine curve.
instance WACurve BN254 Fq Fr where
gA_ = gA
{-# INLINABLE gA_ #-}
-- | Jacobian BN254 point.
type PJ = WJPoint BN254 Fq Fr
-- Jacobian BN254 curve is a Weierstrass Jacobian curve.
instance WJCurve BN254 Fq Fr where
gJ_ = gJ
{-# INLINABLE gJ_ #-}
-- | Projective BN254 point.
type PP = WPPoint BN254 Fq Fr
-- Projective BN254 curve is a Weierstrass projective curve.
instance WPCurve BN254 Fq Fr where
gP_ = gP
{-# INLINABLE gP_ #-}
-------------------------------------------------------------------------------
-- Parameters
-------------------------------------------------------------------------------
-- | Coefficient @A@ of BN254 curve.
_a :: Fq
_a = 0x0
{-# INLINABLE _a #-}
-- | Coefficient @B@ of BN254 curve.
_b :: Fq
_b = 0x3
{-# INLINABLE _b #-}
-- | Cofactor of BN254 curve.
_h :: Natural
_h = 0x1
{-# INLINABLE _h #-}
-- | Characteristic of BN254 curve.
_q :: Natural
_q = 0x30644e72e131a029b85045b68181585d97816a916871ca8d3c208c16d87cfd47
{-# INLINABLE _q #-}
-- | Order of BN254 curve.
_r :: Natural
_r = 0x30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f0000001
{-# INLINABLE _r #-}
-- | Coordinate @X@ of BN254 curve.
_x :: Fq
_x = 0x1
{-# INLINABLE _x #-}
-- | Coordinate @Y@ of BN254 curve.
_y :: Fq
_y = 0x2
{-# INLINABLE _y #-}
-- | Generator of affine BN254 curve.
gA :: PA
gA = A _x _y
{-# INLINABLE gA #-}
-- | Generator of Jacobian BN254 curve.
gJ :: PJ
gJ = J _x _y 1
{-# INLINABLE gJ #-}
-- | Generator of projective BN254 curve.
gP :: PP
gP = P _x _y 1
{-# INLINABLE gP #-}