Uses of Interface
io.inverno.mod.security.jose.jwe.JWEHeader
Packages that use JWEHeader
Package
Description
JSON Web Encryption implementation.
JSON Web Encryption API.
-
Uses of JWEHeader in io.inverno.mod.security.jose.internal.jwe
Classes in io.inverno.mod.security.jose.internal.jwe that implement JWEHeaderModifier and TypeClassDescriptionclassGeneric JWE header implementation.classA generic JWE header implementation used when building or reading JSON JWE objects.Fields in io.inverno.mod.security.jose.internal.jwe declared as JWEHeaderModifier and TypeFieldDescriptionprotected final JWEHeaderGenericJsonJWE.AbstractRecipient.headerThe recipient specific JWE header.Methods in io.inverno.mod.security.jose.internal.jwe that return JWEHeaderModifier and TypeMethodDescriptionGenericJsonJWE.AbstractRecipient.getHeader()GenericJsonJWE.getProtectedHeader()GenericJsonJWE.getUnprotectedHeader()Methods in io.inverno.mod.security.jose.internal.jwe with parameters of type JWEHeaderModifier and TypeMethodDescriptionprotected voidGenericJWEBuilder.checkHeader(JWEHeader header) protected voidGenericJWEReader.checkHeader(JWEHeader header) Constructors in io.inverno.mod.security.jose.internal.jwe with parameters of type JWEHeaderModifierConstructorDescriptionAbstractRecipient(JWEHeader header) Creates a JSON JWE recipient.GenericBuiltRecipient(JWEHeader header, JWE<A> jwe) Creates a JSON JWE built recipient.GenericJsonJWE(JWEHeader protectedHeader, JWEHeader unprotectedHeader, String iv, String aad, String cipherText, String tag, List<B> recipients, com.fasterxml.jackson.databind.ObjectMapper mapper) Creates a generic JSON JWE.GenericReadRecipient(JWEHeader header, String encryptedKey, Function<org.reactivestreams.Publisher<? extends JWK>, reactor.core.publisher.Mono<JWE<A>>> jweFactory) Creates a JSON JWE read recipient. -
Uses of JWEHeader in io.inverno.mod.security.jose.jwe
Methods in io.inverno.mod.security.jose.jwe that return JWEHeaderModifier and TypeMethodDescriptionJsonJWE.Recipient.getHeader()Returns the recipient specific JWE JOSE header.JsonJWE.getProtectedHeader()Returns the protected header common to all recipients.JsonJWE.getUnprotectedHeader()Returns the unprotected header common to all recipients.