module Curve.Weierstrass.SECP192K1
  ( module Curve.Weierstrass
  , module Curve.Weierstrass.SECP192K1
  , Point(..)
  ) where

import Protolude

import PrimeField

import Curve.Weierstrass

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

-- | SECP192K1 curve.
data SECP192K1

-- | Field of points of SECP192K1 curve.
type Fq = PrimeField 0xfffffffffffffffffffffffffffffffffffffffeffffee37

-- | Field of coefficients of SECP192K1 curve.
type Fr = PrimeField 0xfffffffffffffffffffffffe26f2fc170f69466a74defd8d

-- | SECP192K1 curve is a Weierstrass curve.
instance Curve 'Weierstrass c SECP192K1 Fq Fr => WCurve c SECP192K1 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_ #-}
  x_ = const _x
  {-# INLINABLE x_ #-}
  y_ = const _y
  {-# INLINABLE y_ #-}

-- | Affine SECP192K1 curve point.
type PA = WAPoint SECP192K1 Fq Fr

-- | Affine SECP192K1 curve is a Weierstrass affine curve.
instance WACurve SECP192K1 Fq Fr where
  gA_ = gA
  {-# INLINABLE gA_ #-}

-- | Jacobian SECP192K1 point.
type PJ = WJPoint SECP192K1 Fq Fr

-- | Jacobian SECP192K1 curve is a Weierstrass Jacobian curve.
instance WJCurve SECP192K1 Fq Fr where
  gJ_ = gJ
  {-# INLINABLE gJ_ #-}

-- | Projective SECP192K1 point.
type PP = WPPoint SECP192K1 Fq Fr

-- | Projective SECP192K1 curve is a Weierstrass projective curve.
instance WPCurve SECP192K1 Fq Fr where
  gP_ = gP
  {-# INLINABLE gP_ #-}

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

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

-- | Coefficient @B@ of SECP192K1 curve.
_b :: Fq
_b = 0x3
{-# INLINABLE _b #-}

-- | Cofactor of SECP192K1 curve.
_h :: Integer
_h = 0x1
{-# INLINABLE _h #-}

-- | Characteristic of SECP192K1 curve.
_q :: Integer
_q = 0xfffffffffffffffffffffffffffffffffffffffeffffee37
{-# INLINABLE _q #-}

-- | Order of SECP192K1 curve.
_r :: Integer
_r = 0xfffffffffffffffffffffffe26f2fc170f69466a74defd8d
{-# INLINABLE _r #-}

-- | Coordinate @X@ of SECP192K1 curve.
_x :: Fq
_x = 0xdb4ff10ec057e9ae26b07d0280b7f4341da5d1b1eae06c7d
{-# INLINABLE _x #-}

-- | Coordinate @Y@ of SECP192K1 curve.
_y :: Fq
_y = 0x9b2f2f6d9c5628a7844163d015be86344082aa88d95e2f9d
{-# INLINABLE _y #-}

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

-- | Generator of Jacobian SECP192K1 curve.
gJ :: PJ
gJ = J _x _y 1
{-# INLINABLE gJ #-}

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