https://gitlab.com/tezos/tezos
Raw File
Tip revision: 8173e6b531889badd2fdcc88ad9eb9317ced9e3a authored by Thomas Letan on 07 July 2023, 08:37:14 UTC
Octogram: Write experiments and scenarios in Yaml scripts
Tip revision: 8173e6b
poseidon252.ml
module Constant : Poseidon_core.PARAMETERS = struct
  let width = 5

  let full_rounds = 8

  let partial_rounds = 59

  let mds_matrix = Mds_poseidon252.v

  let round_constants = Ark_poseidon252.v

  let partial_round_idx_to_permute = 4
end

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