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

Represents the modified Scrypt hashing algorithm.

Fields

  • type (String.t): Algorithm type.
  • salt (String.t): Salt used to compute hash.
  • salt_separator (String.t): Separator used to compute hash.
  • signer_key (String.t): Key used to compute hash.

Summary

Types

t()

@type t() :: %Appwrite.Types.AlgoScryptModified{
  salt: String.t(),
  salt_separator: String.t(),
  signer_key: String.t(),
  type: String.t()
}