DecodedJwt

class DecodedJwt(val header: JwtHeader, val claims: JwtClaimsSet, val signature: ByteArray, val parts: List<String>)

DecodedJwt is a compact JWT decoded into its parts.

Constructors

Link copied to clipboard
constructor(header: JwtHeader, claims: JwtClaimsSet, signature: ByteArray, parts: List<String>)

Properties

Link copied to clipboard

The JWT claims

Link copied to clipboard

The JWT header

Link copied to clipboard

The JWT parts

Link copied to clipboard

The JWT signature

Functions

Link copied to clipboard
fun verify()

Verifies the JWT.