Uses of Class
io.helidon.security.jwt.JwtException
-
Uses of JwtException in io.helidon.security.jwt
Modifier and TypeMethodDescriptionstatic BigInteger
JwtUtil.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 String
JwtUtil.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 KeyFactory
JwtUtil.getKeyFactory
(String algorithm) Create a key factory for algorithm.static Mac
Create a MAC for algorithm.static Signature
JwtUtil.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 SignedJwt
Sign a jwt using an explicit jwk.static SignedJwt
Sign a jwt using a key obtained based on kid fromJwkKeys
.