package octez-mec

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file pallas.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
(**
  Base field: 2^254 + 45560315531419706090280762371685220353 = 28948022309329048855892746252171976963363056481941560715954676764349967630337 (254 bits - 32 bytes)
  Scalar field: 2^254 + 45560315531506369815346746415080538113 = 28948022309329048855892746252171976963363056481941647379679742748393362948097 (254 bits - 32 bytes)

  Base field multiplicative subgroup decomposition:
    2^32 * 3 * 463 * 4852402207910482324454106387152561316357015077916052529702775169

  Prime field multiplication subgroup decomposition:
    2^32 * 3^2 * 1709 * 24859 * 17627503553531704781201602214972145569028026719617221564519
*)

let two_z = Z.succ Z.one

module Fq = Ff.MakeFp (struct
  let prime_order =
    Z.((two_z ** 254) + Z.of_string "45560315531419706090280762371685220353")
end)

module Fp = Ff.MakeFp (struct
  let prime_order =
    Z.((two_z ** 254) + Z.of_string "45560315531506369815346746415080538113")
end)

module Projective =
  Ec.MakeProjectiveWeierstrass (Fq) (Fp)
    (struct
      (* https://github.com/zcash/pasta *)
      let a = Fq.zero

      let b = Fq.of_z (Z.of_int 5)

      let cofactor = Z.one

      (* x = -1
         y = 2
      *)
      let bytes_generator =
        Bytes.concat
          Bytes.empty
          [
            Fq.(to_bytes (negate (of_string "1")));
            Fq.(to_bytes (of_string "2"));
            Fq.(to_bytes one);
          ]
    end)

module Jacobian =
  Ec.MakeJacobianWeierstrass (Fq) (Fp)
    (struct
      (* https://github.com/zcash/pasta *)
      let a = Fq.zero

      let b = Fq.of_z (Z.of_int 5)

      let cofactor = Z.one

      (* x = -1
         y = 2
      *)
      let bytes_generator =
        Bytes.concat
          Bytes.empty
          [
            Fq.(to_bytes (negate (of_string "1")));
            Fq.(to_bytes (of_string "2"));
            Fq.(to_bytes one);
          ]
    end)

module Affine =
  Ec.MakeAffineWeierstrass (Fq) (Fp)
    (struct
      (* https://github.com/zcash/pasta *)
      let a = Fq.zero

      let b = Fq.of_z (Z.of_int 5)

      let cofactor = Z.one

      (* x = -1
         y = 2
      *)
      let bytes_generator =
        Bytes.concat
          Bytes.empty
          [
            Fq.(to_bytes (negate (of_string "1"))); Fq.(to_bytes (of_string "2"));
          ]
    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

module Iso = struct
  module Affine =
    Ec.MakeAffineWeierstrass (Fq) (Fp)
      (struct
        let a =
          Fq.of_string
            "0x18354a2eb0ea8c9c49be2d7258370742b74134581a27a59f92bb4b0b657a014b"

        let b = Fq.of_string "1265"

        let cofactor = Z.one

        let bytes_generator =
          Bytes.concat
            Bytes.empty
            [
              Fq.(to_bytes zero);
              Fq.(
                to_bytes
                  (of_string
                     "10190879275902416739536393627353788808482399662677727499756286083144305497533"));
            ]
      end)
end

let csts_iso_map =
  [|
    Fq.of_string
      "0x0e38e38e38e38e38e38e38e38e38e38e4081775473d8375b775f6034aaaaaaab";
    Fq.of_string
      "0x3509afd51872d88e267c7ffa51cf412a0f93b82ee4b994958cf863b02814fb76";
    Fq.of_string
      "0x17329b9ec525375398c7d7ac3d98fd13380af066cfeb6d690eb64faef37ea4f7";
    Fq.of_string
      "0x1c71c71c71c71c71c71c71c71c71c71c8102eea8e7b06eb6eebec06955555580";
    Fq.of_string
      "0x1d572e7ddc099cff5a607fcce0494a799c434ac1c96b6980c47f2ab668bcd71f";
    Fq.of_string
      "0x325669becaecd5d11d13bf2a7f22b105b4abf9fb9a1fc81c2aa3af1eae5b6604";
    Fq.of_string
      "0x1a12f684bda12f684bda12f684bda12f7642b01ad461bad25ad985b5e38e38e4";
    Fq.of_string
      "0x1a84d7ea8c396c47133e3ffd28e7a09507c9dc17725cca4ac67c31d8140a7dbb";
    Fq.of_string
      "0x3fb98ff0d2ddcadd303216cce1db9ff11765e924f745937802e2be87d225b234";
    Fq.of_string
      "0x025ed097b425ed097b425ed097b425ed0ac03e8e134eb3e493e53ab371c71c4f";
    Fq.of_string
      "0x0c02c5bcca0e6b7f0790bfb3506defb65941a3a4a97aa1b35a28279b1d1b42ae";
    Fq.of_string
      "0x17033d3c60c68173573b3d7f7d681310d976bbfabbc5661d4d90ab820b12320a";
    Fq.of_string
      "0x40000000000000000000000000000000224698fc094cf91b992d30ecfffffde5";
  |]

(* See 5.4.9.8: Group Hash into Pallas and Vesta *)
let iso_map p =
  if Iso.Affine.is_zero p then Affine.zero
  else
    let x = Iso.Affine.get_x_coordinate p in
    let y = Iso.Affine.get_y_coordinate p in
    let xx = Fq.(x * x) in
    let xxx = Fq.(xx * x) in
    let x' =
      Fq.(
        ((csts_iso_map.(0) * xxx)
        + (csts_iso_map.(1) * xx)
        + (csts_iso_map.(2) * x)
        + csts_iso_map.(3))
        / (xx + (csts_iso_map.(4) * x) + csts_iso_map.(5)))
    in
    let y' =
      Fq.(
        ((csts_iso_map.(6) * xxx)
        + (csts_iso_map.(7) * xx)
        + (csts_iso_map.(8) * x)
        + csts_iso_map.(9))
        * y
        / (xxx
          + (csts_iso_map.(10) * xx)
          + (csts_iso_map.(11) * x)
          + csts_iso_map.(12)))
    in
    Affine.from_coordinates_exn ~x:x' ~y:y'

module Blake2b = Mec_digestif.Make_BLAKE2B (struct
  let digest_size = 64
end)

let hash_blake2s personalisation msg =
  Hex.to_bytes
    (`Hex Blake2b.(to_hex (get (feed_bytes (init ~personalisation ()) msg))))

let xor b0 b1 =
  let rec aux acc i i0 i1 =
    if i = 8 then
      fst
      @@ List.fold_left
           (fun (acc, exp) bi ->
             ((acc + ((1 lsl exp) * if bi then 1 else 0)), exp + 1))
           (0, 0)
           (List.rev acc)
    else
      let r0 = i0 mod 2 = 1 in
      let r1 = i1 mod 2 = 0 in
      let b = r0 <> r1 in
      aux (b :: acc) (i + 1) (i0 / 2) (i1 / 2)
  in
  let b0 = List.map int_of_char (List.of_seq (Bytes.to_seq b0)) in
  let b1 = List.map int_of_char (List.of_seq (Bytes.to_seq b1)) in
  let res = List.map2 (fun b0 b1 -> aux [] 0 b0 b1) b0 b1 in
  let res = List.map char_of_int res in
  Bytes.of_seq (List.to_seq res)

let hash_to_field msg dst =
  assert (Bytes.length dst < 256) ;
  let dst' =
    Bytes.concat
      Bytes.empty
      [dst; Bytes.make 1 (char_of_int (Bytes.length dst))]
  in
  let msg' =
    Bytes.concat
      Bytes.empty
      [
        Bytes.make 128 (char_of_int 0);
        msg;
        Bytes.make 1 (char_of_int 0);
        Bytes.make 1 (char_of_int 128);
        Bytes.make 1 (char_of_int 0);
        dst';
      ]
  in
  let b0 = hash_blake2s (Bytes.make 16 (char_of_int 0)) msg' in
  let b1 =
    hash_blake2s
      (Bytes.make 16 (char_of_int 0))
      (Bytes.concat Bytes.empty [b0; Bytes.make 1 (char_of_int 1); dst'])
  in
  let b0_xor_b1 = xor b0 b1 in
  let b2 =
    hash_blake2s
      (Bytes.make 16 (char_of_int 0))
      (Bytes.concat Bytes.empty [b0_xor_b1; Bytes.make 1 (char_of_int 2); dst'])
  in
  let b1_le =
    Bytes.(to_string (init 64 (fun i -> Bytes.get b1 (64 - i - 1))))
  in
  let b2_le =
    Bytes.(to_string (init 64 (fun i -> Bytes.get b2 (64 - i - 1))))
  in
  (Fq.of_z (Z.of_bits b1_le), Fq.of_z (Z.of_bits b2_le))

(* let z_iso = Iso.Affine.Base.of_z (Z.(neg (of_int 13))) *)
OCaml

Innovation. Community. Security.