Uses of Class
org.forgerock.json.jose.jws.JwsHeader
Package
Description
Classes and interfaces for builder to build JWTs using a fluent API.
Classes and interfaces for JWT signing and JWS'.
-
Uses of JwsHeader in org.forgerock.json.jose.builders
-
Uses of JwsHeader in org.forgerock.json.jose.jws
Modifier and TypeMethodDescriptionSignedJwt.getHeader()
Gets the header object for the JWT, which contains properties which describe the cryptographic operations applied to the JWT, among other properties.ModifierConstructorDescriptionEncryptedThenSignedJwt
(JwsHeader header, EncryptedJwt nestedJwe, byte[] signingInput, byte[] signature) Constructs a reconstructed SignedEncryptedJwt from its constituent parts, the JwsHeader, nested Encrypted JWT, signing input and signature.EncryptedThenSignedJwt
(JwsHeader header, EncryptedJwt nestedJwe, SigningHandler signingHandler) Constructs a fresh, new SignedEncryptedJwt from the given JwsHeader and nested Encrypted JWT.SignedEncryptedJwt
(JwsHeader header, EncryptedJwt nestedJwe, byte[] signingInput, byte[] signature) Deprecated.Constructs a reconstructed SignedEncryptedJwt from its constituent parts, the JwsHeader, nested Encrypted JWT, signing input and signature.SignedEncryptedJwt
(JwsHeader header, EncryptedJwt nestedJwe, SigningHandler signingHandler) Deprecated.Constructs a fresh, new SignedEncryptedJwt from the given JwsHeader and nested Encrypted JWT.SignedJwt
(JwsHeader header, JwtClaimsSet claimsSet, byte[] signingInput, byte[] signature) Constructs a reconstructed SignedJwt from its constituent parts, the JwsHeader, JwtClaimsSet, signing input and signature.SignedJwt
(JwsHeader header, JwtClaimsSet claimsSet, SigningHandler signingHandler) Constructs a fresh, new SignedJwt from the given JwsHeader and JwtClaimsSet.protected
Constructs a reconstructed SignedJwt from its constituent parts, the JwsHeader, nested Encrypted JWT, signing input and signature.protected
SignedJwt
(JwsHeader header, Payload nestedPayload, SigningHandler signingHandler) Constructs a fresh, new SignedJwt from the given JwsHeader and nested Encrypted JWT.