BasicAuth

object BasicAuth

Provides Basic Authentication from RFC 2617.

class Object
trait Matchable
class Any

Type members

Types

type BasicAuthenticator[F[_], A] = BasicCredentials => F[Option[A]]

Validates a plaintext password (presumably by comparing it to a hashed value). A Some value indicates success; None indicates the password failed to validate.

Validates a plaintext password (presumably by comparing it to a hashed value). A Some value indicates success; None indicates the password failed to validate.

Value members

Concrete methods

def apply[F[_] : Sync, A](realm: String, validate: F => A): F => A

Construct authentication middleware that can validate the client-provided plaintext password against something else (like a stored, hashed password).

Construct authentication middleware that can validate the client-provided plaintext password against something else (like a stored, hashed password).

Value parameters:
realm

The realm used for authentication purposes.

validate

Function that validates a plaintext password

def challenge[F[_] : Applicative, A](realm: String, validate: F => A): Kleisli[F, Request[F], Either[Challenge, ContextRequest[F, A]]]