-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathBN254T.hs
123 lines (100 loc) · 3.1 KB
/
BN254T.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
module Data.Curve.Weierstrass.BN254T
( module Data.Curve.Weierstrass
, Point(..)
-- * BN254 curve
, module Data.Curve.Weierstrass.BN254T
) where
import Protolude
import Data.Field.Galois
import GHC.Natural (Natural)
import Data.Curve.Weierstrass
import Data.Curve.Weierstrass.BN254 (BN254, Fq, Fr)
-------------------------------------------------------------------------------
-- Types
-------------------------------------------------------------------------------
-- | Field of points of BN254 curve over @Fq2@.
type Fq2 = Extension U Fq
data U
instance IrreducibleMonic U Fq where
poly _ = [1, 0, 1]
{-# INLINABLE poly #-}
-- BN254 curve is a Weierstrass curve.
instance Curve 'Weierstrass c BN254 Fq2 Fr => WCurve c BN254 Fq2 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 BN254 curve point.
type PA = WAPoint BN254 Fq2 Fr
-- Affine BN254 curve is a Weierstrass affine curve.
instance WACurve BN254 Fq2 Fr where
gA_ = gA
{-# INLINABLE gA_ #-}
-- | Jacobian BN254 point.
type PJ = WJPoint BN254 Fq2 Fr
-- Jacobian BN254 curve is a Weierstrass Jacobian curve.
instance WJCurve BN254 Fq2 Fr where
gJ_ = gJ
{-# INLINABLE gJ_ #-}
-- | Projective BN254 point.
type PP = WPPoint BN254 Fq2 Fr
-- Projective BN254 curve is a Weierstrass projective curve.
instance WPCurve BN254 Fq2 Fr where
gP_ = gP
{-# INLINABLE gP_ #-}
-------------------------------------------------------------------------------
-- Parameters
-------------------------------------------------------------------------------
-- | Coefficient @A@ of BN254 curve.
_a :: Fq2
_a = toE' [
]
{-# INLINABLE _a #-}
-- | Coefficient @B@ of BN254 curve.
_b :: Fq2
_b = toE' [ 0x2b149d40ceb8aaae81be18991be06ac3b5b4c5e559dbefa33267e6dc24a138e5
, 0x9713b03af0fed4cd2cafadeed8fdf4a74fa084e52d1852e4a2bd0685c315d2
]
{-# INLINABLE _b #-}
-- | Cofactor of BN254 curve.
_h :: Natural
_h = 0x30644e72e131a029b85045b68181585e06ceecda572a2489345f2299c0f9fa8d
{-# INLINABLE _h #-}
-- | Characteristic of BN254 curve.
_q :: Natural
_q = 0x30644e72e131a029b85045b68181585d97816a916871ca8d3c208c16d87cfd47
{-# INLINABLE _q #-}
-- | Order of BN254 curve.
_r :: Natural
_r = 0x30644e72e131a029b85045b68181585d2833e84879b9709143e1f593f0000001
{-# INLINABLE _r #-}
-- | Coordinate @X@ of BN254 curve.
_x :: Fq2
_x = toE' [ 0x1800deef121f1e76426a00665e5c4479674322d4f75edadd46debd5cd992f6ed
, 0x198e9393920d483a7260bfb731fb5d25f1aa493335a9e71297e485b7aef312c2
]
{-# INLINABLE _x #-}
-- | Coordinate @Y@ of BN254 curve.
_y :: Fq2
_y = toE' [ 0x12c85ea5db8c6deb4aab71808dcb408fe3d1e7690c43d37b4ce6cc0166fa7daa
, 0x90689d0585ff075ec9e99ad690c3395bc4b313370b38ef355acdadcd122975b
]
{-# INLINABLE _y #-}
-- | Generator of affine BN254 curve.
gA :: PA
gA = A _x _y
{-# INLINABLE gA #-}
-- | Generator of Jacobian BN254 curve.
gJ :: PJ
gJ = J _x _y 1
{-# INLINABLE gJ #-}
-- | Generator of projective BN254 curve.
gP :: PP
gP = P _x _y 1
{-# INLINABLE gP #-}