2016-09-08 21:13:10 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2016. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
(** Tezos - Manipulation and creation of hashes *)
|
|
|
|
|
|
|
|
|
|
|
|
(** {2 Hash Types} ************************************************************)
|
|
|
|
|
|
|
|
(** The signature of an abstract hash type, as produced by functor
|
2016-11-25 22:46:50 +04:00
|
|
|
{!Make_Blake2B}. The {!t} type is abstracted for separating the
|
2016-09-08 21:13:10 +04:00
|
|
|
various kinds of hashes in the system at typing time. Each type is
|
|
|
|
equipped with functions to use it as is of as keys in the database
|
|
|
|
or in memory sets and maps. *)
|
2016-11-14 19:26:34 +04:00
|
|
|
|
|
|
|
module type MINIMAL_HASH = sig
|
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
type t
|
|
|
|
|
2016-11-14 19:26:34 +04:00
|
|
|
val name: string
|
|
|
|
val title: string
|
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
val hash_bytes: MBytes.t list -> t
|
|
|
|
val hash_string: string list -> t
|
|
|
|
val size: int (* in bytes *)
|
|
|
|
val compare: t -> t -> int
|
|
|
|
val equal: t -> t -> bool
|
2017-02-24 20:17:53 +04:00
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
val to_hex: t -> string
|
2017-02-24 20:17:53 +04:00
|
|
|
val of_hex: string -> t option
|
|
|
|
val of_hex_exn: string -> t
|
|
|
|
|
2016-11-25 22:46:50 +04:00
|
|
|
val to_string: t -> string
|
2017-02-24 20:17:53 +04:00
|
|
|
val of_string: string -> t option
|
|
|
|
val of_string_exn: string -> t
|
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
val to_bytes: t -> MBytes.t
|
2017-02-24 20:17:53 +04:00
|
|
|
val of_bytes: MBytes.t -> t option
|
|
|
|
val of_bytes_exn: MBytes.t -> t
|
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
val read: MBytes.t -> int -> t
|
|
|
|
val write: MBytes.t -> int -> t -> unit
|
2017-02-24 20:17:53 +04:00
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
val to_path: t -> string list
|
2017-02-24 20:17:53 +04:00
|
|
|
val of_path: string list -> t option
|
|
|
|
val of_path_exn: string list -> t
|
|
|
|
|
2016-10-06 20:30:04 +04:00
|
|
|
val prefix_path: string -> string list
|
2017-02-24 20:17:53 +04:00
|
|
|
val path_length: int
|
2016-11-14 19:26:34 +04:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
module type INTERNAL_MINIMAL_HASH = sig
|
|
|
|
include MINIMAL_HASH
|
|
|
|
module Table : Hashtbl.S with type key = t
|
|
|
|
end
|
|
|
|
|
2016-11-14 19:26:34 +04:00
|
|
|
module type HASH = sig
|
|
|
|
|
|
|
|
include MINIMAL_HASH
|
|
|
|
|
2017-02-19 21:22:32 +04:00
|
|
|
val of_b58check: string -> t
|
|
|
|
val to_b58check: t -> string
|
|
|
|
val to_short_b58check: t -> string
|
2016-09-08 21:13:10 +04:00
|
|
|
val encoding: t Data_encoding.t
|
|
|
|
val pp: Format.formatter -> t -> unit
|
|
|
|
val pp_short: Format.formatter -> t -> unit
|
2017-02-19 21:22:32 +04:00
|
|
|
type Base58.data += Hash of t
|
|
|
|
val b58check_encoding: t Base58.encoding
|
2016-11-14 19:26:34 +04:00
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
module Set : sig
|
|
|
|
include Set.S with type elt = t
|
|
|
|
val encoding: t Data_encoding.t
|
|
|
|
end
|
|
|
|
|
|
|
|
module Map : sig
|
|
|
|
include Map.S with type key = t
|
|
|
|
val encoding: 'a Data_encoding.t -> 'a t Data_encoding.t
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module type INTERNAL_HASH = sig
|
|
|
|
include HASH
|
|
|
|
module Table : Hashtbl.S with type key = t
|
2016-09-08 21:13:10 +04:00
|
|
|
end
|
|
|
|
|
2017-03-16 20:17:06 +04:00
|
|
|
module type INTERNAL_MERKLE_TREE = sig
|
|
|
|
type elt
|
|
|
|
include INTERNAL_HASH
|
|
|
|
val compute: elt list -> t
|
|
|
|
val empty: t
|
|
|
|
type path =
|
|
|
|
| Left of path * t
|
|
|
|
| Right of t * path
|
|
|
|
| Op
|
|
|
|
val compute_path: elt list -> int -> path
|
|
|
|
val check_path: path -> elt -> t * int
|
|
|
|
val path_encoding: path Data_encoding.t
|
|
|
|
end
|
|
|
|
|
|
|
|
module type MERKLE_TREE = sig
|
|
|
|
type elt
|
|
|
|
include HASH
|
|
|
|
val compute: elt list -> t
|
|
|
|
val empty: t
|
|
|
|
type path =
|
|
|
|
| Left of path * t
|
|
|
|
| Right of t * path
|
|
|
|
| Op
|
|
|
|
val compute_path: elt list -> int -> path
|
|
|
|
val check_path: path -> elt -> t * int
|
|
|
|
val path_encoding: path Data_encoding.t
|
|
|
|
end
|
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
(** {2 Building Hashes} *******************************************************)
|
|
|
|
|
|
|
|
(** The parameters for creating a new Hash type using
|
2016-11-25 22:46:50 +04:00
|
|
|
{!Make_Blake2B}. Both {!name} and {!title} are only informative,
|
2016-09-08 21:13:10 +04:00
|
|
|
used in error messages and serializers. *)
|
2016-11-14 19:26:34 +04:00
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
module type Name = sig
|
|
|
|
val name : string
|
|
|
|
val title : string
|
2016-11-25 22:46:50 +04:00
|
|
|
val size : int option
|
2016-11-14 19:26:34 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
module type PrefixedName = sig
|
|
|
|
include Name
|
2017-02-19 21:22:32 +04:00
|
|
|
val b58check_prefix : string
|
2016-09-08 21:13:10 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
(** Builds a new Hash type using Sha256. *)
|
2017-02-24 20:17:53 +04:00
|
|
|
module Make_minimal_Blake2B (Name : Name) : INTERNAL_MINIMAL_HASH
|
2016-11-25 22:46:50 +04:00
|
|
|
module Make_Blake2B
|
2016-11-14 19:26:34 +04:00
|
|
|
(Register : sig
|
|
|
|
val register_encoding:
|
|
|
|
prefix: string ->
|
2017-02-19 21:22:32 +04:00
|
|
|
length: int ->
|
2016-11-14 19:26:34 +04:00
|
|
|
to_raw: ('a -> string) ->
|
|
|
|
of_raw: (string -> 'a option) ->
|
2017-02-19 21:22:32 +04:00
|
|
|
wrap: ('a -> Base58.data) ->
|
|
|
|
'a Base58.encoding
|
2016-11-14 19:26:34 +04:00
|
|
|
end)
|
2017-02-24 20:17:53 +04:00
|
|
|
(Name : PrefixedName) : INTERNAL_HASH
|
2016-09-08 21:13:10 +04:00
|
|
|
|
|
|
|
(** {2 Predefined Hashes } ****************************************************)
|
|
|
|
|
|
|
|
(** Blocks hashes / IDs. *)
|
|
|
|
module Block_hash : sig
|
2017-02-24 20:17:53 +04:00
|
|
|
include INTERNAL_HASH
|
2016-09-08 21:13:10 +04:00
|
|
|
val param :
|
|
|
|
?name:string ->
|
|
|
|
?desc:string ->
|
2016-12-03 16:05:02 +04:00
|
|
|
('a, 'arg, 'ret) Cli_entries.params ->
|
|
|
|
(t -> 'a, 'arg, 'ret) Cli_entries.params
|
2016-09-08 21:13:10 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
(** Operations hashes / IDs. *)
|
2017-02-24 20:17:53 +04:00
|
|
|
module Operation_hash : INTERNAL_HASH
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-03-16 20:17:06 +04:00
|
|
|
(** List of operations hashes / IDs. *)
|
|
|
|
module Operation_list_hash :
|
|
|
|
INTERNAL_MERKLE_TREE with type elt = Operation_hash.t
|
|
|
|
|
|
|
|
module Operation_list_list_hash :
|
|
|
|
INTERNAL_MERKLE_TREE with type elt = Operation_list_hash.t
|
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
(** Protocol versions / source hashes. *)
|
2017-02-24 20:17:53 +04:00
|
|
|
module Protocol_hash : INTERNAL_HASH
|
2016-11-14 19:26:34 +04:00
|
|
|
|
2017-03-31 15:04:05 +04:00
|
|
|
module Net_id : sig
|
|
|
|
include INTERNAL_HASH
|
|
|
|
val of_block_hash: Block_hash.t -> t
|
|
|
|
end
|
|
|
|
|
2017-02-24 20:17:53 +04:00
|
|
|
module Generic_hash : INTERNAL_MINIMAL_HASH
|
2017-03-31 03:17:25 +04:00
|
|
|
|
|
|
|
(**/**)
|
|
|
|
|
|
|
|
module Generic_Merkle_tree (H : sig
|
|
|
|
type t
|
|
|
|
type elt
|
|
|
|
val encoding : t Data_encoding.t
|
|
|
|
val empty : t
|
|
|
|
val leaf : elt -> t
|
|
|
|
val node : t -> t -> t
|
|
|
|
end) : sig
|
|
|
|
val compute : H.elt list -> H.t
|
|
|
|
type path =
|
|
|
|
| Left of path * H.t
|
|
|
|
| Right of H.t * path
|
|
|
|
| Op
|
|
|
|
val compute_path: H.elt list -> int -> path
|
|
|
|
val check_path: path -> H.elt -> H.t * int
|
|
|
|
end
|