-
Notifications
You must be signed in to change notification settings - Fork 11
/
Ed25519.hs
106 lines (84 loc) · 2.63 KB
/
Ed25519.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.Ed25519
( module Data.Curve.Edwards
, Point(..)
-- * Ed25519 curve
, module Data.Curve.Edwards.Ed25519
) where
import Protolude
import Data.Field.Galois
import GHC.Natural (Natural)
import Data.Curve.Edwards
-------------------------------------------------------------------------------
-- Types
-------------------------------------------------------------------------------
-- | Ed25519 curve.
data Ed25519
-- | Field of points of Ed25519 curve.
type Fq = Prime Q
type Q = 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffed
-- | Field of coefficients of Ed25519 curve.
type Fr = Prime R
type R = 0x1000000000000000000000000000000014def9dea2f79cd65812631a5cf5d3ed
-- Ed25519 curve is an Edwards curve.
instance Curve 'Edwards c Ed25519 Fq Fr => ECurve c Ed25519 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 Ed25519 curve point.
type PA = EAPoint Ed25519 Fq Fr
-- Affine Ed25519 curve is an Edwards affine curve.
instance EACurve Ed25519 Fq Fr where
gA_ = gA
{-# INLINABLE gA_ #-}
-- | Projective Ed25519 point.
type PP = EPPoint Ed25519 Fq Fr
-- Projective Ed25519 curve is an Edwards projective curve.
instance EPCurve Ed25519 Fq Fr where
gP_ = gP
{-# INLINABLE gP_ #-}
-------------------------------------------------------------------------------
-- Parameters
-------------------------------------------------------------------------------
-- | Coefficient @A@ of Ed25519 curve.
_a :: Fq
_a = 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec
{-# INLINABLE _a #-}
-- | Coefficient @D@ of Ed25519 curve.
_d :: Fq
_d = 0x52036cee2b6ffe738cc740797779e89800700a4d4141d8ab75eb4dca135978a3
{-# INLINABLE _d #-}
-- | Cofactor of Ed25519 curve.
_h :: Natural
_h = 0x8
{-# INLINABLE _h #-}
-- | Characteristic of Ed25519 curve.
_q :: Natural
_q = 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffed
{-# INLINABLE _q #-}
-- | Order of Ed25519 curve.
_r :: Natural
_r = 0x1000000000000000000000000000000014def9dea2f79cd65812631a5cf5d3ed
{-# INLINABLE _r #-}
-- | Coordinate @X@ of Ed25519 curve.
_x :: Fq
_x = 0x216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a
{-# INLINABLE _x #-}
-- | Coordinate @Y@ of Ed25519 curve.
_y :: Fq
_y = 0x6666666666666666666666666666666666666666666666666666666666666658
{-# INLINABLE _y #-}
-- | Generator of affine Ed25519 curve.
gA :: PA
gA = A _x _y
{-# INLINABLE gA #-}
-- | Generator of projective Ed25519 curve.
gP :: PP
gP = P _x _y 1
{-# INLINABLE gP #-}