Uses of Interface
com.nimbusds.jose.proc.SecurityContext
-
Packages that use SecurityContext Package Description com.nimbusds.jose.jwk.source JSON Web Key (JWK) sourcing interface and utilities.com.nimbusds.jose.mint JSON Web Signature (JWS) minting framework.com.nimbusds.jose.proc Framework for application-specific verification and decryption of JOSE objects (with arbitrary payloads).com.nimbusds.jwt.proc Framework for application-specific verification and decryption of JSON Web Tokens (JWTs). -
-
Uses of SecurityContext in com.nimbusds.jose.jwk.source
Classes in com.nimbusds.jose.jwk.source with type parameters of type SecurityContext Modifier and Type Class Description classImmutableJWKSet<C extends SecurityContext>JSON Web Key (JWK) source backed by an immutable JWK set.classImmutableSecret<C extends SecurityContext>JSON Web Key (JWK) source backed by an immutable secret.interfaceJWKSource<C extends SecurityContext>JSON Web Key (JWK) source.classRemoteJWKSet<C extends SecurityContext>Remote JSON Web Key (JWK) source specified by a JWK set URL. -
Uses of SecurityContext in com.nimbusds.jose.mint
Classes in com.nimbusds.jose.mint with type parameters of type SecurityContext Modifier and Type Interface Description interfaceConfigurableJWSMinter<C extends SecurityContext>Configurable JSON Web Signature (JWS) minter.classDefaultJWSMinter<C extends SecurityContext>Default minter ofJSON Web Signature (JWS) objectsandsigned JSON Web Tokens(JWTs).interfaceJWSMinter<C extends SecurityContext>Interface for mintingJSON Web Signature (JWS) objectsandsigned JSON Web Tokens(JWTs).interfaceJWSMinterConfiguration<C extends SecurityContext>JSON Web Signature (JWS) minter configuration. -
Uses of SecurityContext in com.nimbusds.jose.proc
Classes in com.nimbusds.jose.proc with type parameters of type SecurityContext Modifier and Type Interface Description interfaceConfigurableJOSEProcessor<C extends SecurityContext>classDefaultJOSEObjectTypeVerifier<C extends SecurityContext>Default JOSE header "typ" (type) parameter verifier.classDefaultJOSEProcessor<C extends SecurityContext>interfaceJOSEObjectTypeVerifier<C extends SecurityContext>JOSE object type (header "typ" parameter) verifier.interfaceJOSEProcessor<C extends SecurityContext>interfaceJOSEProcessorConfiguration<C extends SecurityContext>JOSE processor configuration.classJWEDecryptionKeySelector<C extends SecurityContext>Key selector for decrypting JWE objects, where the key candidates are retrieved from aJSON Web Key (JWK) source.interfaceJWEKeySelector<C extends SecurityContext>Interface for selecting key candidates for decrypting a JSON Web Encryption (JWE) object.classJWSAlgorithmFamilyJWSKeySelector<C extends SecurityContext>AJWSKeySelectorthat expects an algorithm from a specified algorithm family.interfaceJWSKeySelector<C extends SecurityContext>Interface for selecting key candidates for verifying a JSON Web Signature (JWS) object.classJWSVerificationKeySelector<C extends SecurityContext>Key selector for verifying JWS objects, where the key candidates are retrieved from aJSON Web Key (JWK) source.classSingleKeyJWSKeySelector<C extends SecurityContext>AJWSKeySelectorthat always returns the sameKey.Classes in com.nimbusds.jose.proc that implement SecurityContext Modifier and Type Class Description classJWKSecurityContextA security context that contains JSON Web Keys (JWK).classSimpleSecurityContextSimple map-based security context.Methods in com.nimbusds.jose.proc with type parameters of type SecurityContext Modifier and Type Method Description static <C extends SecurityContext>
JWSAlgorithmFamilyJWSKeySelector<C>JWSAlgorithmFamilyJWSKeySelector. fromJWKSetURL(URL jwkSetURL)Queries the given JWK SetURLfor keys, creating aJWSAlgorithmFamilyJWSKeySelectorbased on the RSA or EC key type, whichever comes back first.static <C extends SecurityContext>
JWSAlgorithmFamilyJWSKeySelector<C>JWSAlgorithmFamilyJWSKeySelector. fromJWKSource(JWKSource<C> jwkSource)Queries the givenJWKSourcefor keys, creating aJWSAlgorithmFamilyJWSKeySelectorbased on the RSA or EC key type, whichever comes back first. -
Uses of SecurityContext in com.nimbusds.jwt.proc
Classes in com.nimbusds.jwt.proc with type parameters of type SecurityContext Modifier and Type Interface Description interfaceConfigurableJWTProcessor<C extends SecurityContext>classDefaultJWTClaimsVerifier<C extends SecurityContext>AJWT claims verifierimplementation.classDefaultJWTProcessor<C extends SecurityContext>interfaceJWTClaimsSetAwareJWSKeySelector<C extends SecurityContext>Interface for selecting key candidates for processing a signed JWT which provides access to the JWT claims set in addition to the JWS header.interfaceJWTClaimsSetVerifier<C extends SecurityContext>JWT claims set verifier.interfaceJWTProcessor<C extends SecurityContext>interfaceJWTProcessorConfiguration<C extends SecurityContext>JWT processor configuration.
-