JWK

soidc.jwt.JWK
See theJWK companion class
object JWK

Attributes

Companion
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
JWK.type

Members list

Type members

Inherited and Abstract types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def ecKey(pkcs8: String, alg: Algorithm): Either[JwtError, JWK]
def ecKeyPair(priv: String, pub: String, alg: Algorithm): Either[JwtError, JWK]
def ecKeyPair(priv: ECPrivateKey, pub: ECPublicKey, alg: Algorithm): Either[JwtError, JWK]
def ecPrivate(pkcs8PrivateKey: String, alg: Algorithm): Either[JwtError, JWK]
def ecPublic(pkcs8PublicKey: String, alg: Algorithm): Either[JwtError, JWK]
def fromObj(values: Obj): Either[DecodeError, JWK]
def rsaDerPrivate(der: Array[Byte], alg: Algorithm): Either[JwtError, JWK]
def rsaKey(pkcs8: String, alg: Algorithm): Either[JwtError, JWK]
def rsaPrivate(pkcs8PrivateKey: String, alg: Algorithm): Either[JwtError, JWK]
def rsaPrivate(key: RSAPrivateCrtKey, alg: Algorithm): JWK
def rsaPublic(pkcs8: String, alg: Algorithm): Either[JwtError, JWK]
def symmetric(key: ByteVector, alg: Algorithm): JWK
def symmetric(key: Base64String, alg: Algorithm): JWK

Givens