package mec

  1. Overview
  2. Docs
Mec - Mini Elliptic Curve library

Install

Dune Dependency

Authors

Maintainers

Sources

ocaml-ec-0.1.0.tar.bz2
md5=7c68b531c8011b5d032f0a0d8523e8c5
sha512=f428751c5f2b7c7fc07548551bea0277c9c8c32c1052aecf22787188e7678939dbb091844e29178b2819d724cf843c65774d9211c0a0ede5bf71caff3f2dd1bc

doc/src/mec.curve/secp256r1.ml.html

Source file secp256r1.ml

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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
(**
  https://www.secg.org/SEC2-Ver-1.0.pdf, page 16

  Base field: 115792089210356248762697446949407573530086143415290314195533631308867097853951 (255 bits - 32 bytes)
  Scalar field: 115792089210356248762697446949407573529996955224135760342422259061068512044369 (255 bits - 32 bytes)

  Base field multiplicative subgroup decomposition:
    2 * 3 * 5^2 * 17 * 257 * 641 * 1531 * 65537 * 490463 * 6700417 * 835945042244614951780389953367877943453916927241

  Prime field multiplication subgroup decomposition:
   2^4 * 3 * 71 * 131 * 373 * 3407 * 17449 * 38189 * 306279700557793653483863914058668676200382493196645316621
*)

module Fq = Ff.MakeFp (struct
  let prime_order =
    Z.of_string
      "115792089210356248762697446949407573530086143415290314195533631308867097853951"
end)

module Fp = Ff.MakeFp (struct
  let prime_order =
    Z.of_string
      "115792089210356248762697446949407573529996955224135760342422259061068512044369"
end)

module Jacobian =
  Ec.MakeJacobianWeierstrass (Fq) (Fp)
    (struct
      let a =
        Fq.of_string
          "115792089210356248762697446949407573530086143415290314195533631308867097853948"

      let b =
        Fq.of_string
          "41058363725152142129326129780047268409114441015993725554835256314039467401291"

      let cofactor = Z.one

      (* x = 511607918243171233453336525287549545615842888188604004153674416748734923195030
         y = 730886786380646968340011037971715329076231014666828399308622702301047192244725
      *)
      let bytes_generator =
        Bytes.concat
          Bytes.empty
          [ Fq.(
              to_bytes
                (of_string
                   "48439561293906451759052585252797914202762949526041747995844080717082404635286"));
            Fq.(
              to_bytes
                (of_string
                   "36134250956749795798585127919587881956611106672985015071877198253568414405109"));
            Fq.(to_bytes one) ]
    end)

module Projective =
  Ec.MakeProjectiveWeierstrass (Fq) (Fp)
    (struct
      let a =
        Fq.of_string
          "115792089210356248762697446949407573530086143415290314195533631308867097853948"

      let b =
        Fq.of_string
          "41058363725152142129326129780047268409114441015993725554835256314039467401291"

      let cofactor = Z.one

      (* x = 511607918243171233453336525287549545615842888188604004153674416748734923195030
         y = 730886786380646968340011037971715329076231014666828399308622702301047192244725
      *)
      let bytes_generator =
        Bytes.concat
          Bytes.empty
          [ Fq.(
              to_bytes
                (of_string
                   "48439561293906451759052585252797914202762949526041747995844080717082404635286"));
            Fq.(
              to_bytes
                (of_string
                   "36134250956749795798585127919587881956611106672985015071877198253568414405109"));
            Fq.(to_bytes one) ]
    end)

module Affine =
  Ec.MakeAffineWeierstrass (Fq) (Fp)
    (struct
      let a =
        Fq.of_string
          "115792089210356248762697446949407573530086143415290314195533631308867097853948"

      let b =
        Fq.of_string
          "41058363725152142129326129780047268409114441015993725554835256314039467401291"

      let cofactor = Z.one

      (* x = 511607918243171233453336525287549545615842888188604004153674416748734923195030
         y = 730886786380646968340011037971715329076231014666828399308622702301047192244725
      *)
      let bytes_generator =
        Bytes.concat
          Bytes.empty
          [ Fq.(
              to_bytes
                (of_string
                   "48439561293906451759052585252797914202762949526041747995844080717082404635286"));
            Fq.(
              to_bytes
                (of_string
                   "36134250956749795798585127919587881956611106672985015071877198253568414405109"))
          ]
    end)

let from_affine_weierstrass_to_jacobian_weierstrass p =
  Ec.from_affine_weierstrass_to_jacobian_weierstrass
    (module Affine)
    (module Jacobian)
    p

let from_affine_weierstrass_to_projective_weierstrass p =
  Ec.from_affine_weierstrass_to_projective_weierstrass
    (module Affine)
    (module Projective)
    p

let from_jacobian_weierstrass_to_affine_weierstrass p =
  Ec.from_jacobian_weierstrass_to_affine_weierstrass
    (module Jacobian)
    (module Affine)
    p

let from_projective_weierstrass_to_affine_weierstrass p =
  Ec.from_projective_weierstrass_to_affine_weierstrass
    (module Projective)
    (module Affine)
    p
OCaml

Innovation. Community. Security.