Md5HashedAuthStore

A function mapping username to a user object and precomputed md5 hash of the username, realm, and password, or None if no user exists.

More secure than PlainTextAuthStore due to only needing to store the digested hash instead of the password in plain text.

Companion:
class
Source:
DigestAuth.scala
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply[F[_], A](func: String => F[Option[(A, String)]]): AuthStore[F, A]
def precomputeHash[F[_] : Hash](username: String, realm: String, password: String): F[String]