2016-11-03 22:15:31 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2018-02-06 00:17:03 +04:00
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
2016-11-03 22:15:31 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
(** Tezos - X25519/XSalsa20-Poly1305 cryptography *)
|
|
|
|
|
2018-04-06 01:22:30 +04:00
|
|
|
open Hacl
|
2018-02-04 21:39:34 +04:00
|
|
|
|
2018-04-06 01:22:30 +04:00
|
|
|
type secret_key = secret Box.key
|
|
|
|
type public_key = public Box.key
|
2018-02-04 21:39:34 +04:00
|
|
|
type channel_key = Box.combined Box.key
|
2018-04-06 01:22:30 +04:00
|
|
|
type nonce = Bigstring.t
|
2017-01-23 14:09:51 +04:00
|
|
|
type target = Z.t
|
2016-11-03 22:15:31 +04:00
|
|
|
|
2018-02-06 22:16:26 +04:00
|
|
|
module Secretbox = struct
|
|
|
|
include Secretbox
|
|
|
|
let box_noalloc key nonce msg =
|
2018-04-06 01:22:30 +04:00
|
|
|
box ~key ~nonce ~msg ~cmsg:msg
|
2018-02-06 22:16:26 +04:00
|
|
|
|
|
|
|
let box_open_noalloc key nonce cmsg =
|
2018-04-06 01:22:30 +04:00
|
|
|
box_open ~key ~nonce ~cmsg ~msg:cmsg
|
|
|
|
|
|
|
|
let box key msg nonce =
|
|
|
|
let msglen = MBytes.length msg in
|
|
|
|
let cmsg = MBytes.create (msglen + zerobytes) in
|
|
|
|
MBytes.fill cmsg '\x00' ;
|
|
|
|
MBytes.blit msg 0 cmsg zerobytes msglen ;
|
|
|
|
box ~key ~nonce ~msg:cmsg ~cmsg ;
|
|
|
|
cmsg
|
|
|
|
|
|
|
|
let box_open key cmsg nonce =
|
|
|
|
let cmsglen = MBytes.length cmsg in
|
|
|
|
let msg = MBytes.create cmsglen in
|
|
|
|
match box_open ~key ~nonce ~cmsg ~msg with
|
|
|
|
| false -> None
|
|
|
|
| true -> Some (MBytes.sub msg zerobytes (cmsglen - zerobytes))
|
2018-02-06 22:16:26 +04:00
|
|
|
end
|
|
|
|
|
2017-11-27 09:13:12 +04:00
|
|
|
module Public_key_hash = Blake2B.Make (Base58) (struct
|
2017-01-14 16:13:49 +04:00
|
|
|
let name = "Crypto_box.Public_key_hash"
|
|
|
|
let title = "A Cryptobox public key ID"
|
2017-02-19 21:22:32 +04:00
|
|
|
let b58check_prefix = Base58.Prefix.cryptobox_public_key_hash
|
2017-01-14 16:13:49 +04:00
|
|
|
let size = Some 16
|
|
|
|
end)
|
|
|
|
|
2017-02-19 21:22:32 +04:00
|
|
|
let () =
|
|
|
|
Base58.check_encoded_prefix Public_key_hash.b58check_encoding "id" 30
|
|
|
|
|
2017-01-14 16:13:49 +04:00
|
|
|
let hash pk =
|
2018-04-06 01:22:30 +04:00
|
|
|
Public_key_hash.hash_bytes [Box.unsafe_to_bytes pk]
|
2018-02-04 21:39:34 +04:00
|
|
|
|
|
|
|
let zerobytes = Box.zerobytes
|
|
|
|
let boxzerobytes = Box.boxzerobytes
|
2017-01-14 16:13:49 +04:00
|
|
|
|
|
|
|
let random_keypair () =
|
2018-02-04 21:39:34 +04:00
|
|
|
let pk, sk = Box.keypair () in
|
2017-01-14 16:13:49 +04:00
|
|
|
sk, pk, hash pk
|
2018-02-06 22:16:26 +04:00
|
|
|
|
2018-04-06 01:22:30 +04:00
|
|
|
let zero_nonce = MBytes.make Nonce.bytes '\x00'
|
2018-02-04 21:39:34 +04:00
|
|
|
let random_nonce = Nonce.gen
|
|
|
|
let increment_nonce = Nonce.increment
|
|
|
|
|
2018-04-06 01:22:30 +04:00
|
|
|
let precompute sk pk = Box.dh pk sk
|
2018-02-04 21:39:34 +04:00
|
|
|
|
2018-04-06 01:22:30 +04:00
|
|
|
let fast_box_noalloc k nonce msg =
|
|
|
|
Box.box ~k ~nonce ~msg ~cmsg:msg
|
2018-02-04 21:39:34 +04:00
|
|
|
|
2018-04-06 01:22:30 +04:00
|
|
|
let fast_box_open_noalloc k nonce cmsg =
|
|
|
|
Box.box_open ~k ~nonce ~cmsg ~msg:cmsg
|
2018-02-04 21:39:34 +04:00
|
|
|
|
|
|
|
let fast_box k msg nonce =
|
2018-04-06 01:22:30 +04:00
|
|
|
let msglen = MBytes.length msg in
|
|
|
|
let cmsg = MBytes.create (msglen + zerobytes) in
|
|
|
|
MBytes.fill cmsg '\x00' ;
|
|
|
|
MBytes.blit msg 0 cmsg zerobytes msglen ;
|
|
|
|
Box.box ~k ~nonce ~msg:cmsg ~cmsg ;
|
|
|
|
cmsg
|
2018-02-04 21:39:34 +04:00
|
|
|
|
|
|
|
let fast_box_open k cmsg nonce =
|
2018-04-06 01:22:30 +04:00
|
|
|
let cmsglen = MBytes.length cmsg in
|
|
|
|
let msg = MBytes.create cmsglen in
|
|
|
|
match Box.box_open ~k ~nonce ~cmsg ~msg with
|
|
|
|
| false -> None
|
|
|
|
| true -> Some (MBytes.sub msg zerobytes (cmsglen - zerobytes))
|
2017-01-14 16:13:49 +04:00
|
|
|
|
2016-11-25 21:03:57 +04:00
|
|
|
let compare_target hash target =
|
2017-11-27 09:13:12 +04:00
|
|
|
let hash = Z.of_bits (Blake2B.to_string hash) in
|
2017-01-23 14:09:51 +04:00
|
|
|
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)
|
2016-11-19 02:07:27 +04:00
|
|
|
|
2017-01-23 14:09:51 +04:00
|
|
|
let default_target = make_target 24.
|
2016-11-18 00:02:32 +04:00
|
|
|
|
|
|
|
let check_proof_of_work pk nonce target =
|
2016-11-25 21:03:57 +04:00
|
|
|
let hash =
|
2017-11-27 09:13:12 +04:00
|
|
|
Blake2B.hash_bytes [
|
2018-04-06 01:22:30 +04:00
|
|
|
Box.unsafe_to_bytes pk ;
|
|
|
|
nonce ;
|
2016-11-25 22:46:50 +04:00
|
|
|
] in
|
2016-11-25 21:03:57 +04:00
|
|
|
compare_target hash target
|
2016-11-18 00:02:32 +04:00
|
|
|
|
2017-01-23 14:09:48 +04:00
|
|
|
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
|
2018-02-04 21:39:34 +04:00
|
|
|
loop (Nonce.increment nonce) (cpt + 1) in
|
2017-01-23 14:09:48 +04:00
|
|
|
loop (random_nonce ()) 0
|
2016-11-09 06:18:09 +04:00
|
|
|
|
2018-04-06 01:22:30 +04:00
|
|
|
let public_key_to_bigarray pk =
|
|
|
|
let buf = MBytes.create Box.pkbytes in
|
|
|
|
Box.blit_to_bytes pk buf ;
|
|
|
|
buf
|
|
|
|
|
|
|
|
let public_key_of_bigarray buf =
|
|
|
|
let pk = MBytes.copy buf in
|
|
|
|
Box.unsafe_pk_of_bytes pk
|
|
|
|
|
2018-02-08 13:51:01 +04:00
|
|
|
let public_key_size = Box.pkbytes
|
|
|
|
|
2018-04-06 01:22:30 +04:00
|
|
|
let secret_key_to_bigarray sk =
|
|
|
|
let buf = MBytes.create Box.skbytes in
|
|
|
|
Box.blit_to_bytes sk buf ;
|
|
|
|
buf
|
|
|
|
|
|
|
|
let secret_key_of_bigarray buf =
|
|
|
|
let sk = MBytes.copy buf in
|
|
|
|
Box.unsafe_sk_of_bytes sk
|
|
|
|
|
2018-02-08 13:51:01 +04:00
|
|
|
let secret_key_size = Box.skbytes
|
|
|
|
|
|
|
|
let nonce_size = Nonce.bytes
|
2018-04-03 13:44:11 +04:00
|
|
|
|
|
|
|
let public_key_encoding =
|
|
|
|
let open Data_encoding in
|
|
|
|
conv
|
|
|
|
public_key_to_bigarray
|
|
|
|
public_key_of_bigarray
|
|
|
|
(Fixed.bytes public_key_size)
|
|
|
|
|
|
|
|
let secret_key_encoding =
|
|
|
|
let open Data_encoding in
|
|
|
|
conv
|
|
|
|
secret_key_to_bigarray
|
|
|
|
secret_key_of_bigarray
|
|
|
|
(Fixed.bytes secret_key_size)
|
|
|
|
|
|
|
|
let nonce_encoding =
|
2018-04-06 01:22:30 +04:00
|
|
|
Data_encoding.Fixed.bytes nonce_size
|