module Data.Curve.Binary.SECT239K1
  ( module Data.Curve.Binary
  , Point(..)
  -- * SECT239K1 curve
  , module Data.Curve.Binary.SECT239K1
  ) where

import Protolude

import Data.Field.Galois
import GHC.Natural (Natural)

import Data.Curve.Binary

-------------------------------------------------------------------------------
-- Types
-------------------------------------------------------------------------------

-- | SECT239K1 curve.
data SECT239K1

-- | Field of points of SECT239K1 curve.
type F2m = Binary P
type P = 0x800000000000000000004000000000000000000000000000000000000001

-- | Field of coefficients of SECT239K1 curve.
type Fr = Prime R
type R = 0x2000000000000000000000000000005a79fec67cb6e91f1c1da800e478a5

-- SECT239K1 curve is a binary curve.
instance Curve 'Binary c SECT239K1 F2m Fr => BCurve c SECT239K1 F2m Fr where
  a_ = const _a
  {-# INLINABLE a_ #-}
  b_ = const _b
  {-# INLINABLE b_ #-}
  h_ = const _h
  {-# INLINABLE h_ #-}
  p_ = const _p
  {-# INLINABLE p_ #-}
  r_ = const _r
  {-# INLINABLE r_ #-}

-- | Affine SECT239K1 curve point.
type PA = BAPoint SECT239K1 F2m Fr

-- Affine SECT239K1 curve is a binary affine curve.
instance BACurve SECT239K1 F2m Fr where
  gA_ = gA
  {-# INLINABLE gA_ #-}

-- | Projective SECT239K1 point.
type PP = BPPoint SECT239K1 F2m Fr

-- Projective SECT239K1 curve is a binary projective curve.
instance BPCurve SECT239K1 F2m Fr where
  gP_ = gP
  {-# INLINABLE gP_ #-}

-------------------------------------------------------------------------------
-- Parameters
-------------------------------------------------------------------------------

-- | Coefficient @A@ of SECT239K1 curve.
_a :: F2m
_a = 0x0
{-# INLINABLE _a #-}

-- | Coefficient @B@ of SECT239K1 curve.
_b :: F2m
_b = 0x1
{-# INLINABLE _b #-}

-- | Cofactor of SECT239K1 curve.
_h :: Natural
_h = 0x4
{-# INLINABLE _h #-}

-- | Polynomial of SECT239K1 curve.
_p :: Natural
_p = 0x800000000000000000004000000000000000000000000000000000000001
{-# INLINABLE _p #-}

-- | Order of SECT239K1 curve.
_r :: Natural
_r = 0x2000000000000000000000000000005a79fec67cb6e91f1c1da800e478a5
{-# INLINABLE _r #-}

-- | Coordinate @X@ of SECT239K1 curve.
_x :: F2m
_x = 0x29a0b6a887a983e9730988a68727a8b2d126c44cc2cc7b2a6555193035dc
{-# INLINABLE _x #-}

-- | Coordinate @Y@ of SECT239K1 curve.
_y :: F2m
_y = 0x76310804f12e549bdb011c103089e73510acb275fc312a5dc6b76553f0ca
{-# INLINABLE _y #-}

-- | Generator of affine SECT239K1 curve.
gA :: PA
gA = A _x _y
{-# INLINABLE gA #-}

-- | Generator of projective SECT239K1 curve.
gP :: PP
gP = P _x _y 1
{-# INLINABLE gP #-}