interface DecomposedJwt {
    header: JwtHeader;
    headerB64: string;
    payload: JwtPayload;
    payloadB64: string;
    signatureB64: string;
}

Properties

header: JwtHeader

The yet unverified (!) header of the JWT

headerB64: string

The yet unverified (!) header of the JWT, as base64url-encoded string

payload: JwtPayload

The yet unverified (!) payload of the JWT

payloadB64: string

The yet unverified (!) payload of the JWT, as base64url-encoded string

signatureB64: string

The yet unverified (!) signature of the JWT, as base64url-encoded string