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 *)
|
|
|
|
|
|
|
|
type secret_key = Sodium.Box.secret_key
|
|
|
|
type public_key = Sodium.Box.public_key
|
|
|
|
type channel_key = Sodium.Box.channel_key
|
|
|
|
type nonce = Sodium.Box.nonce
|
2017-01-23 14:09:51 +04:00
|
|
|
type target = Z.t
|
2016-11-03 22:15:31 +04:00
|
|
|
|
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 =
|
|
|
|
Public_key_hash.hash_bytes [Sodium.Box.Bigbytes.of_public_key pk]
|
|
|
|
|
|
|
|
let random_keypair () =
|
|
|
|
let sk, pk = Sodium.Box.random_keypair () in
|
|
|
|
sk, pk, hash pk
|
2016-11-03 22:15:31 +04:00
|
|
|
let random_nonce = Sodium.Box.random_nonce
|
|
|
|
let increment_nonce = Sodium.Box.increment_nonce
|
|
|
|
let box = Sodium.Box.Bigbytes.box
|
2016-11-08 02:38:02 +04:00
|
|
|
let box_open sk pk msg nonce =
|
|
|
|
try Some (Sodium.Box.Bigbytes.box_open sk pk msg nonce) with
|
2017-11-13 19:34:00 +04:00
|
|
|
| Sodium.Verification_failure -> None
|
2016-11-16 04:19:13 +04:00
|
|
|
|
2017-01-14 16:13:49 +04:00
|
|
|
let precompute = Sodium.Box.precompute
|
|
|
|
let fast_box = Sodium.Box.Bigbytes.fast_box
|
|
|
|
let fast_box_open ck msg nonce =
|
|
|
|
try Some (Sodium.Box.Bigbytes.fast_box_open ck msg nonce) with
|
2017-11-13 19:34:00 +04:00
|
|
|
| Sodium.Verification_failure -> None
|
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 [
|
2016-11-25 22:46:50 +04:00
|
|
|
Sodium.Box.Bigbytes.of_public_key pk ;
|
|
|
|
Sodium.Box.Bigbytes.of_nonce nonce ;
|
|
|
|
] 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
|
|
|
|
loop (increment_nonce nonce) (cpt + 1) in
|
|
|
|
loop (random_nonce ()) 0
|
2016-11-09 06:18:09 +04:00
|
|
|
|
2016-11-16 04:19:13 +04:00
|
|
|
let public_key_encoding =
|
|
|
|
let open Data_encoding in
|
2017-11-13 19:34:00 +04:00
|
|
|
conv
|
|
|
|
Sodium.Box.Bigbytes.of_public_key
|
|
|
|
Sodium.Box.Bigbytes.to_public_key
|
|
|
|
(Fixed.bytes Sodium.Box.public_key_size)
|
2016-11-16 04:19:13 +04:00
|
|
|
|
|
|
|
let secret_key_encoding =
|
|
|
|
let open Data_encoding in
|
2017-11-13 19:34:00 +04:00
|
|
|
conv
|
|
|
|
Sodium.Box.Bigbytes.of_secret_key
|
|
|
|
Sodium.Box.Bigbytes.to_secret_key
|
|
|
|
(Fixed.bytes Sodium.Box.secret_key_size)
|
2016-11-16 04:19:13 +04:00
|
|
|
|
|
|
|
let nonce_encoding =
|
|
|
|
let open Data_encoding in
|
2017-11-13 19:34:00 +04:00
|
|
|
conv
|
|
|
|
Sodium.Box.Bigbytes.of_nonce
|
|
|
|
Sodium.Box.Bigbytes.to_nonce
|
|
|
|
(Fixed.bytes Sodium.Box.nonce_size)
|