module Data.Curve.Weierstrass.SECP224R1
( module Data.Curve.Weierstrass
, Point(..)
, module Data.Curve.Weierstrass.SECP224R1
) where
import Protolude
import Data.Field.Galois
import GHC.Natural (Natural)
import Data.Curve.Weierstrass
data SECP224R1
type Fq = Prime Q
type Q = 0xffffffffffffffffffffffffffffffff000000000000000000000001
type Fr = Prime R
type R = 0xffffffffffffffffffffffffffff16a2e0b8f03e13dd29455c5c2a3d
instance Curve 'Weierstrass c SECP224R1 Fq Fr => WCurve c SECP224R1 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 SECP224R1 Fq Fr
instance WACurve SECP224R1 Fq Fr where
gA_ = gA
{-# INLINABLE gA_ #-}
type PJ = WJPoint SECP224R1 Fq Fr
instance WJCurve SECP224R1 Fq Fr where
gJ_ = gJ
{-# INLINABLE gJ_ #-}
type PP = WPPoint SECP224R1 Fq Fr
instance WPCurve SECP224R1 Fq Fr where
gP_ = gP
{-# INLINABLE gP_ #-}
_a :: Fq
_a = 0xfffffffffffffffffffffffffffffffefffffffffffffffffffffffe
{-# INLINABLE _a #-}
_b :: Fq
_b = 0xb4050a850c04b3abf54132565044b0b7d7bfd8ba270b39432355ffb4
{-# INLINABLE _b #-}
_h :: Natural
_h = 0x1
{-# INLINABLE _h #-}
_q :: Natural
_q = 0xffffffffffffffffffffffffffffffff000000000000000000000001
{-# INLINABLE _q #-}
_r :: Natural
_r = 0xffffffffffffffffffffffffffff16a2e0b8f03e13dd29455c5c2a3d
{-# INLINABLE _r #-}
_x :: Fq
_x = 0xb70e0cbd6bb4bf7f321390b94a03c1d356c21122343280d6115c1d21
{-# INLINABLE _x #-}
_y :: Fq
_y = 0xbd376388b5f723fb4c22dfe6cd4375a05a07476444d5819985007e34
{-# 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 #-}