Uses of Class
io.helidon.security.jwt.JwtException
Packages that use JwtException
-
Uses of JwtException in io.helidon.security.jwt
Methods in io.helidon.security.jwt that throw JwtExceptionModifier and TypeMethodDescriptionstatic BigIntegerJwtUtil.asBigInteger(JsonObject json, String key, String description) Extract a key value from json object that is base64-url encoded and convert it to big integer.static byte[]JwtUtil.asByteArray(JsonObject json, String key, String description) Extract a key value from json object that is a base64-url encoded byte array.static StringJwtUtil.asString(JsonObject json, String key, String description) Extract a key value from json object that is string.static Optional<BigInteger> JwtUtil.getBigInteger(JsonObject json, String key, String description) Extract a key value from json object that is base64-url encoded and convert it to big integer if present.static Optional<byte[]> JwtUtil.getByteArray(JsonObject json, String key, String description) Extract a key value from json object that is a base64-url encoded byte array, if present.static KeyFactoryJwtUtil.getKeyFactory(String algorithm) Create a key factory for algorithm.static MacCreate a MAC for algorithm.static SignatureJwtUtil.getSignature(String signatureAlgorithm) Create a signature for algorithm.JwtUtil.getString(JsonObject json, String key) Extract a key value from json object that is string if present.JwtUtil.getStrings(JsonObject json, String key) Extract a key value from json object that is a list of strings if present.static SignedJwtSign a jwt using an explicit jwk.static SignedJwtSign a jwt using a key obtained based on kid fromJwkKeys.