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
orchard.ml
module Constant : Poseidon_core.PARAMETERS = struct
  let width = 3

  let full_rounds = 8

  let partial_rounds = 58

  let mds_matrix = Mds_orchard.v

  let round_constants = Ark_orchard.v

  let partial_round_idx_to_permute = 0
end

module Make (Scalar : Bls12_381.Ff_sig.PRIME) =
  Poseidon_core.Make (Constant) (Scalar)
back to top