View Source Tezex.Crypto.Point (tezex v1.0.0-rc3)

Holds point data. Is usually handled internally by the library and serves only as detailed information to the end-user.

Parameters:

  • :x [integer]: first point coordinate;
  • :y [integer]: first point coordinate;
  • :z [integer]: first point coordinate (used only in Jacobian coordinates);

Link to this section Summary

Link to this section Types

@type t() :: %Tezex.Crypto.Point{
  x: non_neg_integer(),
  y: non_neg_integer(),
  z: non_neg_integer()
}

Link to this section Functions

@spec is_at_infinity?(t()) :: boolean()