package tezos-protocol-environment-sigs

  1. Overview
  2. Docs
On This Page
  1. Hash Types
Legend:
Library
Module
Module type
Parameter
Class
Class type
module type T = sig ... end

Generic interface for a datatype with comparison, pretty-printer and serialization functions.

module type HASHABLE = sig ... end

Generic interface for a datatype with comparison, pretty-printer, serialization functions and a hashing function.

Hash Types

The signature of an abstract hash type, as produced by functor Make_SHA256. The t type is abstracted for separating the 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.

module type MINIMAL_HASH = sig ... end
module type RAW_DATA = sig ... end
module type B58_DATA = sig ... end
module type ENCODER = sig ... end
module type INDEXES_SET = sig ... end
module type INDEXES_MAP = sig ... end
module type INDEXES = sig ... end
module type HASH = sig ... end
module type MERKLE_TREE = sig ... end
module type SIGNATURE_PUBLIC_KEY_HASH = sig ... end
module type SIGNATURE_PUBLIC_KEY = sig ... end
module type SIGNATURE = sig ... end
module type FIELD = sig ... end
module type PRIME_FIELD = sig ... end

Module type for the prime fields GF(p)

module type CURVE = sig ... end
module type PVSS_ELEMENT = sig ... end
module type PVSS_PUBLIC_KEY = sig ... end
module type PVSS_SECRET_KEY = sig ... end
module type PVSS = sig ... end