https://gitlab.com/tezos/tezos
Raw File
Tip revision: 6e3dec6dfffaf1020282dabfa98c45ab1b66d51a authored by Diane Gallois-Wong on 14 March 2024, 16:53:36 UTC
Tezt/operation: swap run and waiter, so that the test doesn't hang
Tip revision: 6e3dec6
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