JWSDecoded

soidc.jwt.JWSDecoded
See theJWSDecoded companion class
object JWSDecoded

Attributes

Companion
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
JWSDecoded.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 createSigned[H, C](header: H, claims: C, key: JWK)(using ByteEncoder[H], ByteEncoder[C]): Either[SignError, JWSDecoded[H, C]]
def createUnsigned[H, C](header: H, claims: C)(using ByteEncoder[H], ByteEncoder[C]): JWSDecoded[H, C]
def fromString[H, C](token: String)(using ByteDecoder[H], ByteDecoder[C]): Either[DecodeError, JWSDecoded[H, C]]
def unsafeFromString[H, C](token: String)(using ByteDecoder[H], ByteDecoder[C]): JWSDecoded[H, C]