module Data.Curve.Weierstrass.BN254A
( module Data.Curve.Weierstrass
, Point(..)
, module Data.Curve.Weierstrass.BN254A
) where
import Protolude
import Data.Field.Galois
import GHC.Natural (Natural)
import Data.Curve.Weierstrass
data BN254A
type Fq = Prime Q
type Q = 0x2370fb049d410fbe4e761a9886e502417d023f40180000017e80600000000001
type Fr = Prime R
type R = 0x2370fb049d410fbe4e761a9886e502411dc1af70120000017e80600000000001
instance Curve 'Weierstrass c BN254A Fq Fr => WCurve c BN254A 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_ #-}
type PA = WAPoint BN254A Fq Fr
instance WACurve BN254A Fq Fr where
gA_ = gA
{-# INLINABLE gA_ #-}
type PJ = WJPoint BN254A Fq Fr
instance WJCurve BN254A Fq Fr where
gJ_ = gJ
{-# INLINABLE gJ_ #-}
type PP = WPPoint BN254A Fq Fr
instance WPCurve BN254A Fq Fr where
gP_ = gP
{-# INLINABLE gP_ #-}
_a :: Fq
_a = 0x0
{-# INLINABLE _a #-}
_b :: Fq
_b = 0x5
{-# INLINABLE _b #-}
_h :: Natural
_h = 0x1
{-# INLINABLE _h #-}
_q :: Natural
_q = 0x2370fb049d410fbe4e761a9886e502417d023f40180000017e80600000000001
{-# INLINABLE _q #-}
_r :: Natural
_r = 0x2370fb049d410fbe4e761a9886e502411dc1af70120000017e80600000000001
{-# INLINABLE _r #-}
_x :: Fq
_x = 0x1
{-# INLINABLE _x #-}
_y :: Fq
_y = 0xd45589b158faaf6ab0e4ad38d998e9982e7ff63964ee1460342a592677cccb0
{-# INLINABLE _y #-}
gA :: PA
gA = A _x _y
{-# INLINABLE gA #-}
gJ :: PJ
gJ = J _x _y 1
{-# INLINABLE gJ #-}
gP :: PP
gP = P _x _y 1
{-# INLINABLE gP #-}