-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCurve1174.hs
106 lines (84 loc) · 2.62 KB
/
Curve1174.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
module Data.Curve.Edwards.Curve1174
( module Data.Curve.Edwards
, Point(..)
-- * Curve1174 curve
, module Data.Curve.Edwards.Curve1174
) where
import Protolude
import Data.Field.Galois
import GHC.Natural (Natural)
import Data.Curve.Edwards
-------------------------------------------------------------------------------
-- Types
-------------------------------------------------------------------------------
-- | Curve1174 curve.
data Curve1174
-- | Field of points of Curve1174 curve.
type Fq = Prime Q
type Q = 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7
-- | Field of coefficients of Curve1174 curve.
type Fr = Prime R
type R = 0x1fffffffffffffffffffffffffffffff77965c4dfd307348944d45fd166c971
-- Curve1174 curve is an Edwards curve.
instance Curve 'Edwards c Curve1174 Fq Fr => ECurve c Curve1174 Fq Fr where
a_ = const _a
{-# INLINABLE a_ #-}
d_ = const _d
{-# INLINABLE d_ #-}
h_ = const _h
{-# INLINABLE h_ #-}
q_ = const _q
{-# INLINABLE q_ #-}
r_ = const _r
{-# INLINABLE r_ #-}
-- | Affine Curve1174 curve point.
type PA = EAPoint Curve1174 Fq Fr
-- Affine Curve1174 curve is an Edwards affine curve.
instance EACurve Curve1174 Fq Fr where
gA_ = gA
{-# INLINABLE gA_ #-}
-- | Projective Curve1174 point.
type PP = EPPoint Curve1174 Fq Fr
-- Projective Curve1174 curve is an Edwards projective curve.
instance EPCurve Curve1174 Fq Fr where
gP_ = gP
{-# INLINABLE gP_ #-}
-------------------------------------------------------------------------------
-- Parameters
-------------------------------------------------------------------------------
-- | Coefficient @A@ of Curve1174 curve.
_a :: Fq
_a = 0x1
{-# INLINABLE _a #-}
-- | Coefficient @D@ of Curve1174 curve.
_d :: Fq
_d = 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb61
{-# INLINABLE _d #-}
-- | Cofactor of Curve1174 curve.
_h :: Natural
_h = 0x4
{-# INLINABLE _h #-}
-- | Characteristic of Curve1174 curve.
_q :: Natural
_q = 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7
{-# INLINABLE _q #-}
-- | Order of Curve1174 curve.
_r :: Natural
_r = 0x1fffffffffffffffffffffffffffffff77965c4dfd307348944d45fd166c971
{-# INLINABLE _r #-}
-- | Coordinate @X@ of Curve1174 curve.
_x :: Fq
_x = 0x37fbb0cea308c479343aee7c029a190c021d96a492ecd6516123f27bce29eda
{-# INLINABLE _x #-}
-- | Coordinate @Y@ of Curve1174 curve.
_y :: Fq
_y = 0x6b72f82d47fb7cc6656841169840e0c4fe2dee2af3f976ba4ccb1bf9b46360e
{-# INLINABLE _y #-}
-- | Generator of affine Curve1174 curve.
gA :: PA
gA = A _x _y
{-# INLINABLE gA #-}
-- | Generator of projective Curve1174 curve.
gP :: PP
gP = P _x _y 1
{-# INLINABLE gP #-}