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 SignedJwt
EncryptedJwt. decrypt(JwkKeys jwkKeys)
DecryptSignedJwt
from the content of the encrypted jwt.SignedJwt
EncryptedJwt. decrypt(JwkKeys jwkKeys, Jwk defaultJwk)
DecryptSignedJwt
from the content of the encrypted jwt.EncryptedJwt.Builder
EncryptedJwt.Builder. jwks(JwkKeys jwkKeys, String kid)
JwkKeys
which should be searched for key with specific kid.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.static JwkKeys
JwkKeys. 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 JwkKeys
OidcConfig. signJwk()
JWK used for signature validation.JwkKeys
Tenant. 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.
-