e1d1292c09
We now use simpler OCaml bindings much easier to review.
146 lines
4.3 KiB
OCaml
146 lines
4.3 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Copyright (c) 2014 - 2018. *)
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
(** Tezos - X25519/XSalsa20-Poly1305 cryptography *)
|
|
|
|
open Tweetnacl
|
|
|
|
type secret_key = Box.secret Box.key
|
|
type public_key = Box.public Box.key
|
|
type channel_key = Box.combined Box.key
|
|
type nonce = Nonce.t
|
|
type target = Z.t
|
|
|
|
module Public_key_hash = Blake2B.Make (Base58) (struct
|
|
let name = "Crypto_box.Public_key_hash"
|
|
let title = "A Cryptobox public key ID"
|
|
let b58check_prefix = Base58.Prefix.cryptobox_public_key_hash
|
|
let size = Some 16
|
|
end)
|
|
|
|
let () =
|
|
Base58.check_encoded_prefix Public_key_hash.b58check_encoding "id" 30
|
|
|
|
let hash pk =
|
|
Public_key_hash.hash_bytes [Cstruct.to_bigarray (Box.to_cstruct pk)]
|
|
|
|
let zerobytes = Box.zerobytes
|
|
let boxzerobytes = Box.boxzerobytes
|
|
|
|
let random_keypair () =
|
|
let pk, sk = Box.keypair () in
|
|
sk, pk, hash pk
|
|
let random_nonce = Nonce.gen
|
|
let increment_nonce = Nonce.increment
|
|
|
|
let box sk pk msg nonce =
|
|
let msg = Cstruct.of_bigarray msg in
|
|
Cstruct.to_bigarray (Box.box ~sk ~pk ~msg ~nonce)
|
|
|
|
let box_open sk pk cmsg nonce =
|
|
let cmsg = Cstruct.of_bigarray cmsg in
|
|
Option.map ~f:Cstruct.to_bigarray (Box.box_open ~sk ~pk ~cmsg ~nonce)
|
|
|
|
let box_noalloc sk pk nonce msg =
|
|
let msg = Cstruct.of_bigarray msg in
|
|
Box.box_noalloc ~sk ~pk ~nonce ~msg
|
|
|
|
let box_open_noalloc sk pk nonce cmsg =
|
|
let cmsg = Cstruct.of_bigarray cmsg in
|
|
Box.box_open_noalloc ~sk ~pk ~nonce ~cmsg
|
|
|
|
let precompute sk pk = Box.combine pk sk
|
|
|
|
let fast_box k msg nonce =
|
|
let msg = Cstruct.of_bigarray msg in
|
|
Cstruct.to_bigarray (Box.box_combined ~k ~msg ~nonce)
|
|
|
|
let fast_box_open k cmsg nonce =
|
|
let cmsg = Cstruct.of_bigarray cmsg in
|
|
Option.map ~f:Cstruct.to_bigarray (Box.box_open_combined ~k ~cmsg ~nonce)
|
|
|
|
let fast_box_noalloc k nonce msg =
|
|
let msg = Cstruct.of_bigarray msg in
|
|
Box.box_combined_noalloc ~k ~nonce ~msg
|
|
|
|
let fast_box_open_noalloc k nonce cmsg =
|
|
let cmsg = Cstruct.of_bigarray cmsg in
|
|
Box.box_open_combined_noalloc ~k ~nonce ~cmsg
|
|
|
|
let compare_target hash target =
|
|
let hash = Z.of_bits (Blake2B.to_string hash) in
|
|
Z.compare hash target <= 0
|
|
|
|
let make_target f =
|
|
if f < 0. || 256. < f then invalid_arg "Cryptobox.target_of_float" ;
|
|
let frac, shift = modf f in
|
|
let shift = int_of_float shift in
|
|
let m =
|
|
Z.of_int64 @@
|
|
if frac = 0. then
|
|
Int64.(pred (shift_left 1L 54))
|
|
else
|
|
Int64.of_float (2. ** (54. -. frac))
|
|
in
|
|
if shift < 202 then
|
|
Z.logor
|
|
(Z.shift_left m (202 - shift))
|
|
(Z.pred @@ Z.shift_left Z.one (202 - shift))
|
|
else
|
|
Z.shift_right m (shift - 202)
|
|
|
|
let default_target = make_target 24.
|
|
|
|
let check_proof_of_work pk nonce target =
|
|
let hash =
|
|
Blake2B.hash_bytes [
|
|
Cstruct.to_bigarray (Box.to_cstruct pk) ;
|
|
Cstruct.to_bigarray (Nonce.to_cstruct nonce) ;
|
|
] in
|
|
compare_target hash target
|
|
|
|
let generate_proof_of_work ?max pk target =
|
|
let may_interupt =
|
|
match max with
|
|
| None -> (fun _ -> ())
|
|
| Some max -> (fun cpt -> if max < cpt then raise Not_found) in
|
|
let rec loop nonce cpt =
|
|
may_interupt cpt ;
|
|
if check_proof_of_work pk nonce target then
|
|
nonce
|
|
else
|
|
loop (Nonce.increment nonce) (cpt + 1) in
|
|
loop (random_nonce ()) 0
|
|
|
|
let to_bigarray : type a. a Box.key -> MBytes.t = fun k ->
|
|
Cstruct.to_bigarray (Box.to_cstruct k)
|
|
|
|
let of_bigarray f s = f (Cstruct.of_bigarray s)
|
|
|
|
let public_key_encoding =
|
|
let open Data_encoding in
|
|
conv
|
|
to_bigarray
|
|
(of_bigarray Box.pk_of_cstruct_exn)
|
|
(Fixed.bytes Box.pkbytes)
|
|
|
|
let secret_key_encoding =
|
|
let open Data_encoding in
|
|
conv
|
|
to_bigarray
|
|
(of_bigarray Box.sk_of_cstruct_exn)
|
|
(Fixed.bytes Box.skbytes)
|
|
|
|
let nonce_encoding =
|
|
let open Data_encoding in
|
|
conv
|
|
(fun nonce -> Cstruct.to_bigarray (Nonce.to_cstruct nonce))
|
|
(of_bigarray Nonce.of_cstruct_exn)
|
|
(Fixed.bytes Nonce.bytes)
|