b6449cae87
* `lib_stdlib`: basic extended OCaml stdlib and generic data structures * `lib_data_encoding`: almost independant 'Data_encoding' * `lib_error_monad`: almost independant 'Error_monad' * `lib_stdlib_lwt`: extended Lwt library * `lib_crypto`: all the crypto stuff (hashing, signing, cryptobox). * `lib_base`: - basic type definitions (Block_header, Operation, ...) - a module `TzPervasives` to bind them all and to be the single module opened everywhere. In the process, I splitted `Tezos_data` and `Hash` in multiple submodules, thus removing a lot of `-open`. The following two modules may not have found their place yet: - Base58 (currently in `lib_crypto`) - Cli_entries (currently in `lib_stdlib_lwt`)
43 lines
1.6 KiB
OCaml
43 lines
1.6 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Copyright (c) 2014 - 2017. *)
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
(** Tezos - X25519/XSalsa20-Poly1305 cryptography *)
|
|
|
|
type nonce
|
|
|
|
val random_nonce : unit -> nonce
|
|
val increment_nonce : ?step:int -> nonce -> nonce
|
|
val nonce_encoding : nonce Data_encoding.t
|
|
|
|
type target
|
|
val default_target : target
|
|
val make_target : float -> target
|
|
|
|
type secret_key
|
|
type public_key
|
|
module Public_key_hash : S.INTERNAL_HASH
|
|
type channel_key
|
|
|
|
val public_key_encoding : public_key Data_encoding.t
|
|
val secret_key_encoding : secret_key Data_encoding.t
|
|
|
|
val hash : public_key -> Public_key_hash.t
|
|
val random_keypair : unit -> secret_key * public_key * Public_key_hash.t
|
|
|
|
val box : secret_key -> public_key -> MBytes.t -> nonce -> MBytes.t
|
|
val box_open : secret_key -> public_key -> MBytes.t -> nonce -> MBytes.t option
|
|
|
|
val precompute : secret_key -> public_key -> channel_key
|
|
val fast_box : channel_key -> MBytes.t -> nonce -> MBytes.t
|
|
val fast_box_open : channel_key -> MBytes.t -> nonce -> MBytes.t option
|
|
|
|
val check_proof_of_work : public_key -> nonce -> target -> bool
|
|
val generate_proof_of_work : ?max:int -> public_key -> target -> nonce
|
|
|