-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathExample.hs
51 lines (38 loc) · 1.06 KB
/
Example.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
module Example where
import Data.Curve.Edwards.Ed25519 as Ed25519
import Protolude
-- type Fr = Prime 7237005577332262213973186563042994240857116359379907606001950938285454250989
-- type Fq = Prime 57896044618658097711785492504343953926634992332820282019728792003956564819949
-- type PA = Point Edwards Affine Ed25519 Fq Fr
-- type PP = Point Edwards Projective Ed25519 Fq Fr
-- generate random affine ponit
p1 :: Ed25519.PA
p1 = Ed25519.gen
-- generate affine point by multiply by field coefficient
p2 :: Ed25519.PA
p2 = Ed25519.mul p1 (3 :: Ed25519.Fr)
-- ** --
-- point addition
p3 :: Ed25519.PA
p3 = Ed25519.add p1 p2
-- point identity
p4 :: Ed25519.PA
p4 = Ed25519.id
-- point doubling
p5 :: Ed25519.PA
p5 = Ed25519.dbl p1
-- point inversion
p6 :: Ed25519.PA
p6 = Ed25519.inv p1
-- Frobenius endomorphism
p7 :: Ed25519.PA
p7 = Ed25519.frob p1
-- base point
p8 :: Ed25519.PA
p8 = Ed25519.gA
-- convert affine to projective
p9 :: Ed25519.PP
p9 = Ed25519.fromA p8
-- get y coordinate (point from Fq) from coordinate
p10 :: Maybe Ed25519.Fq
p10 = Ed25519.yX p1 (2 :: Fq)