Packages

t

tsec.passwordhashers

IdPasswordHasher

trait IdPasswordHasher[A] extends PasswordHasher[Id, A]

Source
PasswordHasher.scala
Linear Supertypes
PasswordHasher[Id, A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IdPasswordHasher
  2. PasswordHasher
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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 checkpw(p: Array[Byte], hash: PasswordHash[A])(implicit F: Functor[Id]): Id[VerificationStatus]

    Check against a password hash in a pure way

    Check against a password hash in a pure way

    It may raise an error for a malformed hash

    Definition Classes
    PasswordHasher
  6. def checkpw(p: Array[Char], hash: PasswordHash[A])(implicit F: Functor[Id]): Id[VerificationStatus]

    Check against a password hash in a pure way

    Check against a password hash in a pure way

    It may raise an error for a malformed hash

    Definition Classes
    PasswordHasher
  7. final def checkpw(p: String, hash: PasswordHash[A])(implicit F: Functor[Id]): Id[VerificationStatus]

    Check against a password hash in a pure way

    Check against a password hash in a pure way

    It may raise an error for a malformed hash

    Definition Classes
    PasswordHasher
  8. def checkpwBool(p: Array[Byte], hash: PasswordHash[A]): Id[Boolean]

    Check against a password hash in a pure way

    Check against a password hash in a pure way

    It may raise an error for a malformed hash

    Definition Classes
    IdPasswordHasherPasswordHasher
  9. def checkpwBool(p: Array[Char], hash: PasswordHash[A]): Id[Boolean]

    Check against a password hash in a pure way

    Check against a password hash in a pure way

    It may raise an error for a malformed hash

    Definition Classes
    IdPasswordHasherPasswordHasher
  10. final def checkpwBool(p: String, hash: PasswordHash[A]): Id[Boolean]

    Check against a password hash in a pure way

    Check against a password hash in a pure way

    It may raise an error for a malformed hash

    Definition Classes
    PasswordHasher
  11. final def checkpwUnsafe(p: Array[Char], hash: PasswordHash[A]): Boolean

    Check against a password hash in an unsafe manner.

    Check against a password hash in an unsafe manner.

    It may throw an exception for a malformed password

    Definition Classes
    PasswordHasher
  12. final def checkpwUnsafe(p: Array[Byte], hash: PasswordHash[A]): Boolean

    Check against a password hash in an unsafe manner.

    Check against a password hash in an unsafe manner.

    It may throw an exception for a malformed password

    Definition Classes
    PasswordHasher
  13. final def checkpwUnsafe(p: String, hash: PasswordHash[A]): Boolean

    Check against a password hash in an unsafe manner.

    Check against a password hash in an unsafe manner.

    It may throw an exception for a malformed password

    Definition Classes
    PasswordHasher
  14. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def hashpw(p: Array[Byte]): Id[PasswordHash[A]]

    Hash a password in utf-8 encoded bytes, then clear the data in the password, but in a pure way.

    Hash a password in utf-8 encoded bytes, then clear the data in the password, but in a pure way.

    p

    the encoded password

    Definition Classes
    IdPasswordHasherPasswordHasher
  21. def hashpw(p: Array[Char]): Id[PasswordHash[A]]

    Hash a password in a char array then clear the data in the password original array, as well as the byte encoding change, but in a pure fashion because side effects suck butt.

    Hash a password in a char array then clear the data in the password original array, as well as the byte encoding change, but in a pure fashion because side effects suck butt.

    Definition Classes
    IdPasswordHasherPasswordHasher
  22. final def hashpw(p: String): Id[PasswordHash[A]]
    Definition Classes
    PasswordHasher
  23. final def hashpwUnsafe(p: Array[Byte]): PasswordHash[A]

    Hash a password in utf-8 encoded bytes, then clear the data in the password

    Hash a password in utf-8 encoded bytes, then clear the data in the password

    p

    the encoded password

    Definition Classes
    PasswordHasher
  24. final def hashpwUnsafe(p: Array[Char]): PasswordHash[A]

    Hash a password in a char array then clear the data in the password original array, as well as the byte encoding change.

    Hash a password in a char array then clear the data in the password original array, as well as the byte encoding change.

    p

    the encoded password

    Definition Classes
    PasswordHasher
  25. final def hashpwUnsafe(p: String): PasswordHash[A]
    Definition Classes
    PasswordHasher
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from PasswordHasher[Id, A]

Inherited from AnyRef

Inherited from Any

Ungrouped