https://gitlab.com/tezos/tezos
Raw File
Tip revision: 3752d761642300b54bf373f1cc9b6e4727dba72f authored by Albin Coquereau on 21 August 2023, 15:59:43 UTC
tezt/lib_tezos: improve mempool helpers type
Tip revision: 3752d76
pedersen_hash.mli
module MakePedersenHash : functor
  (Ec : Ec_sig.BASE)
  (Params : sig
     val generators : Ec.t list

     val chunks_per_generator : int
   end)
  -> sig
  val hash : Iterator.Bit.t -> Ec.t
end

module Zcash : sig
  val hash : Iterator.Bit.t -> Jubjub.AffineEdwards.t
end
back to top