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 static SignedJwt
SignedJwt. sign(Jwt jwt, JwkKeys jwks)
Sign a jwt using a key obtained based on kid fromJwkKeys
.Errors
SignedJwt. verifySignature(JwkKeys keys)
Verify signature against the provided keys (the kid of this JWT should be present in theJwkKeys
provided).Errors
SignedJwt. verifySignature(JwkKeys keys, Jwk defaultJwk)
Verify signature against the provided keys (the kid of thisPrincipal JWT should be present in theJwkKeys
provided). -
Uses of JwkKeys in io.helidon.security.jwt.jwk
Methods in io.helidon.security.jwt.jwk that return JwkKeys Modifier and Type Method Description JwkKeys
JwkKeys.Builder. build()
Build a new keys instance. -
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 JwkKeys
OidcConfig. signJwk()
JWK used for signature validation.Methods in io.helidon.security.providers.oidc.common with parameters of type JwkKeys Modifier and Type Method Description OidcConfig.Builder
OidcConfig.Builder. signJwk(JwkKeys jwk)
SetJwkKeys
to use for JWT validation.
-