object JwtAlgorithm

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JwtAlgorithm
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. def allAsymmetric(): Seq[JwtAsymmetricAlgorithm]
    Annotations
    @nowarn()
  5. def allECDSA(): Seq[JwtECDSAAlgorithm]
  6. def allEdDSA(): Seq[JwtEdDSAAlgorithm]
    Annotations
    @nowarn()
  7. def allHmac(): Seq[JwtHmacAlgorithm]
  8. def allRSA(): Seq[JwtRSAAlgorithm]
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. def fromString(algo: String): JwtAlgorithm

    Deserialize an algorithm from its string equivalent.

    Deserialize an algorithm from its string equivalent. Only real algorithms supported, if you need to support "none", use "optionFromString".

    algo

    the name of the algorithm (e.g. HS256 or HmacSHA256)

    returns

    the actual instance of the algorithm

    Annotations
    @nowarn()
    Exceptions thrown

    JwtNonSupportedAlgorithm in case the string doesn't match any known algorithm

  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  20. def optionFromString(algo: String): Option[JwtAlgorithm]

    Deserialize an algorithm from its string equivalent.

    Deserialize an algorithm from its string equivalent. If it's the special "none" algorithm, return None, else, return Some with the corresponding algorithm inside.

    algo

    the name of the algorithm (e.g. none, HS256 or HmacSHA256)

    returns

    the actual instance of the algorithm

  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. case object ES256 extends JwtECDSAAlgorithm with Product with Serializable
  27. case object ES384 extends JwtECDSAAlgorithm with Product with Serializable
  28. case object ES512 extends JwtECDSAAlgorithm with Product with Serializable
  29. case object EdDSA extends JwtEdDSAAlgorithm with Product with Serializable
  30. case object HMD5 extends JwtHmacAlgorithm with Product with Serializable
  31. case object HS224 extends JwtHmacAlgorithm with Product with Serializable
  32. case object HS256 extends JwtHmacAlgorithm with Product with Serializable
  33. case object HS384 extends JwtHmacAlgorithm with Product with Serializable
  34. case object HS512 extends JwtHmacAlgorithm with Product with Serializable
  35. case object RS256 extends JwtRSAAlgorithm with Product with Serializable
  36. case object RS384 extends JwtRSAAlgorithm with Product with Serializable
  37. case object RS512 extends JwtRSAAlgorithm with Product with Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  2. case object Ed25519 extends JwtEdDSAAlgorithm with Product with Serializable
    Annotations
    @deprecated
    Deprecated

    (Since version 9.3.0) Ed25519 is not a standard Json Web Algorithm name. Use EdDSA instead.

Inherited from AnyRef

Inherited from Any

Ungrouped