SRP v0.2.0 SRP.IdentityVerifier View Source

A user identity verifier. This verifier is formed by the username, a random salt generated at registration time, and a password verifier derived from the user password.

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %SRP.IdentityVerifier{
  password_verifier: binary(),
  salt: binary(),
  username: String.t()
}