View Source Appwrite.Types.AlgoArgon2 (appwrite v0.1.9)

Represents the Argon2 hashing algorithm.

Fields

  • type (String.t): Algorithm type.
  • memory_cost (non_neg_integer): Memory used to compute hash.
  • time_cost (non_neg_integer): Amount of time consumed to compute hash.
  • threads (non_neg_integer): Number of threads used to compute hash.

Summary

Types

t()

@type t() :: %Appwrite.Types.AlgoArgon2{
  memory_cost: non_neg_integer(),
  threads: non_neg_integer(),
  time_cost: non_neg_integer(),
  type: String.t()
}