Uses of Class
io.helidon.security.jwt.jwk.JwkKeys
-
Packages that use JwkKeys Package Description io.helidon.security.jwt JWT (JSON web token) support.io.helidon.security.jwt.jwk JWK (JSON web key) support.io.helidon.security.providers.oidc.common Open ID Connect (OIDC) classes usable from all OIDC related components. -
-
Uses of JwkKeys in io.helidon.security.jwt
Methods in io.helidon.security.jwt with parameters of type JwkKeys Modifier and Type Method Description SignedJwtEncryptedJwt. decrypt(JwkKeys jwkKeys)DecryptSignedJwtfrom the content of the encrypted jwt.SignedJwtEncryptedJwt. decrypt(JwkKeys jwkKeys, Jwk defaultJwk)DecryptSignedJwtfrom the content of the encrypted jwt.EncryptedJwt.BuilderEncryptedJwt.Builder. jwks(JwkKeys jwkKeys, String kid)JwkKeyswhich should be searched for key with specific kid.static SignedJwtSignedJwt. sign(Jwt jwt, JwkKeys jwks)Sign a jwt using a key obtained based on kid fromJwkKeys.ErrorsSignedJwt. verifySignature(JwkKeys keys)Verify signature against the provided keys (the kid of this JWT should be present in theJwkKeysprovided).ErrorsSignedJwt. verifySignature(JwkKeys keys, Jwk defaultJwk)Verify signature against the provided keys (the kid of thisPrincipal JWT should be present in theJwkKeysprovided). -
Uses of JwkKeys in io.helidon.security.jwt.jwk
Methods in io.helidon.security.jwt.jwk that return JwkKeys Modifier and Type Method Description JwkKeysJwkKeys.Builder. build()Build a new keys instance.static JwkKeysJwkKeys. create(JsonObject json)Create Jwk keys from its JSON representation. -
Uses of JwkKeys in io.helidon.security.providers.oidc.common
Methods in io.helidon.security.providers.oidc.common that return JwkKeys Modifier and Type Method Description JwkKeysOidcConfig. signJwk()JWK used for signature validation.JwkKeysTenant. signJwk()JWK used for signature validation.Methods in io.helidon.security.providers.oidc.common that return types with arguments of type JwkKeys Modifier and Type Method Description Optional<JwkKeys>TenantConfig. tenantSignJwk()JWK used for signature validation.
-