com.mohiva.play.silhouette.impl.providers

BasicAuthProvider

Related Docs: object BasicAuthProvider | package providers

class BasicAuthProvider extends RequestProvider

A request provider implementation which supports HTTP basic authentication.

The provider supports the change of password hashing algorithms on the fly. Sometimes it may be possible to change the hashing algorithm used by the application. But the hashes stored in the backing store can't be converted back into plain text passwords, to hash them again with the new algorithm. So if a user successfully authenticates after the application has changed the hashing algorithm, the provider hashes the entered password again with the new algorithm and stores the auth info in the backing store.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BasicAuthProvider
  2. RequestProvider
  3. Provider
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BasicAuthProvider(authInfoService: AuthInfoService, passwordHasher: PasswordHasher, passwordHasherList: Seq[PasswordHasher])

    authInfoService

    The auth info service.

    passwordHasher

    The default password hasher used by the application.

    passwordHasherList

    List of password hasher supported by the application.

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def authenticate[B](request: Request[B]): Future[Option[LoginInfo]]

    Authenticates an identity based on credentials sent in a request.

    Authenticates an identity based on credentials sent in a request.

    B

    The type of the body.

    request

    The request.

    returns

    Some login info on successful authentication or None if the authentication was unsuccessful.

    Definition Classes
    BasicAuthProviderRequestProvider
  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  11. def getCredentials(request: RequestHeader): Option[Credentials]

    Encodes the credentials.

    Encodes the credentials.

    request

    Contains the colon-separated name-value pairs in clear-text string format

    returns

    The users credentials as plaintext

  12. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  13. def id: String

    Gets the provider ID.

    Gets the provider ID.

    returns

    The provider ID.

    Definition Classes
    BasicAuthProviderProvider
  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  19. def toString(): String

    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from RequestProvider

Inherited from Provider

Inherited from AnyRef

Inherited from Any

Ungrouped