-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCurve25519.hs
93 lines (74 loc) · 2.25 KB
/
Curve25519.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
module Data.Curve.Montgomery.Curve25519
( module Data.Curve.Montgomery
, Point(..)
-- * Curve25519 curve
, module Data.Curve.Montgomery.Curve25519
) where
import Protolude
import Data.Field.Galois
import GHC.Natural (Natural)
import Data.Curve.Montgomery
-------------------------------------------------------------------------------
-- Types
-------------------------------------------------------------------------------
-- | Curve25519 curve.
data Curve25519
-- | Field of points of Curve25519 curve.
type Fq = Prime Q
type Q = 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffed
-- | Field of coefficients of Curve25519 curve.
type Fr = Prime R
type R = 0x1000000000000000000000000000000014def9dea2f79cd65812631a5cf5d3ed
-- Curve25519 curve is a Montgomery curve.
instance Curve 'Montgomery c Curve25519 Fq Fr => MCurve c Curve25519 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_ #-}
-- | Affine Curve25519 curve point.
type PA = MAPoint Curve25519 Fq Fr
-- Affine Curve25519 curve is a Montgomery affine curve.
instance MACurve Curve25519 Fq Fr where
gA_ = gA
{-# INLINABLE gA_ #-}
-------------------------------------------------------------------------------
-- Parameters
-------------------------------------------------------------------------------
-- | Coefficient @A@ of Curve25519 curve.
_a :: Fq
_a = 0x76d06
{-# INLINABLE _a #-}
-- | Coefficient @B@ of Curve25519 curve.
_b :: Fq
_b = 0x1
{-# INLINABLE _b #-}
-- | Cofactor of Curve25519 curve.
_h :: Natural
_h = 0x8
{-# INLINABLE _h #-}
-- | Characteristic of Curve25519 curve.
_q :: Natural
_q = 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffed
{-# INLINABLE _q #-}
-- | Order of Curve25519 curve.
_r :: Natural
_r = 0x1000000000000000000000000000000014def9dea2f79cd65812631a5cf5d3ed
{-# INLINABLE _r #-}
-- | Coordinate @X@ of Curve25519 curve.
_x :: Fq
_x = 0x9
{-# INLINABLE _x #-}
-- | Coordinate @Y@ of Curve25519 curve.
_y :: Fq
_y = 0x20ae19a1b8a086b4e01edd2c7748d14c923d4d7e6d7c61b229e9c5a27eced3d9
{-# INLINABLE _y #-}
-- | Generator of affine Curve25519 curve.
gA :: PA
gA = A _x _y
{-# INLINABLE gA #-}