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
pallas.mli
module Projective : Ec_sig.ProjectiveWeierstrassT

module Affine : Ec_sig.AffineWeierstrassT

module Jacobian : Ec_sig.JacobianWeierstrassT

val from_affine_weierstrass_to_jacobian_weierstrass : Affine.t -> Jacobian.t

val from_affine_weierstrass_to_projective_weierstrass : Affine.t -> Projective.t

val from_jacobian_weierstrass_to_affine_weierstrass : Jacobian.t -> Affine.t

val from_projective_weierstrass_to_affine_weierstrass : Projective.t -> Affine.t

module Iso : sig
  module Affine : Ec_sig.AffineWeierstrassT
end

val iso_map : Iso.Affine.t -> Affine.t

val hash_to_field : Bytes.t -> Bytes.t -> Affine.Base.t * Affine.Base.t
back to top