Package org.pac4j.jwt.util
Class JWKHelper
- java.lang.Object
-
- org.pac4j.jwt.util.JWKHelper
-
public final class JWKHelper extends Object
JWK helper.- Since:
- 1.9.2
- Author:
- Jerome Leleu
-
-
Constructor Summary
Constructors Constructor Description JWKHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KeyPairbuildECKeyPairFromJwk(String json)Build the EC key pair from the JWK JSON.static KeyPairbuildRSAKeyPairFromJwk(String json)Build the RSA key pair from the JWK JSON.static StringbuildSecretFromJwk(String json)Build the secret from the JWK JSON.
-
-
-
Method Detail
-
buildSecretFromJwk
public static String buildSecretFromJwk(String json)
Build the secret from the JWK JSON.- Parameters:
json- the json- Returns:
- the secret
-
buildRSAKeyPairFromJwk
public static KeyPair buildRSAKeyPairFromJwk(String json)
Build the RSA key pair from the JWK JSON.- Parameters:
json- the json- Returns:
- the key pair
-
-