- SignatureAlgorithm - Enum in org.eclipse.microprofile.jwt.tck.util
-
- signClaims(String) - Static method in class org.eclipse.microprofile.jwt.tck.util.TokenUtils
-
Utility method to generate a JWT string from a JSON resource file that is signed by the privateKey.pem
test resource key using RS256 algorithm.
- signClaims(String, SignatureAlgorithm) - Static method in class org.eclipse.microprofile.jwt.tck.util.TokenUtils
-
Utility method to generate a JWT string from a JSON resource file that is signed by the privateKey.pem
test resource key using either RS256 or ES256 algorithm.
- signClaims(String, SignatureAlgorithm, Set<TokenUtils.InvalidClaims>) - Static method in class org.eclipse.microprofile.jwt.tck.util.TokenUtils
-
Utility method to generate a JWT string from a JSON resource file that is signed by the privateKey.pem
test resource key using either RS256 or ES256 algorithm, possibly with invalid fields.
- signClaims(String, SignatureAlgorithm, Set<TokenUtils.InvalidClaims>, Map<String, Long>) - Static method in class org.eclipse.microprofile.jwt.tck.util.TokenUtils
-
Utility method to generate a JWT string from a JSON resource file that is signed by either the privateKey.pem
test resource using RS256 algorithm or the ecPrivateKey.pem test resource using ES256 algorithm,
possibly with invalid fields and custom time claims.
- signClaims(PrivateKey, String, String) - Static method in class org.eclipse.microprofile.jwt.tck.util.TokenUtils
-
Utility method to generate a JWT string from a JSON resource file that is signed by the private key
using either RS256 or ES256 algorithm.
- signClaims(PrivateKey, String, String, Set<TokenUtils.InvalidClaims>, Map<String, Long>) - Static method in class org.eclipse.microprofile.jwt.tck.util.TokenUtils
-
Utility method to generate a JWT string from a JSON resource file that is signed by the private key
using either RS256 or ES256 algorithm, possibly with invalid fields.
- signEncryptClaims(String) - Static method in class org.eclipse.microprofile.jwt.tck.util.TokenUtils
-
Utility method to generate a JWT string from a JSON resource file by signing it first
with the privateKey.pem test resource using RS256 algorithm and encrypting next with the publicKey.pem test resource.
- signEncryptClaims(String, SignatureAlgorithm) - Static method in class org.eclipse.microprofile.jwt.tck.util.TokenUtils
-
Utility method to generate a JWT string from a JSON resource file by signing it first by either
the privateKey.pem test resource using RS256 algorithm or the ecPrivateKey.pem test resource using ES256 algorithm
and encrypting it next with the publicKey.pem test resource.
- signEncryptClaims(PrivateKey, PublicKey, String) - Static method in class org.eclipse.microprofile.jwt.tck.util.TokenUtils
-
Utility method to generate a JWT string from a JSON resource file by signing it first with the private key
using RS256 algorithm and encrypting next with the public key.
- signEncryptClaims(PrivateKey, String, PublicKey, String, String) - Static method in class org.eclipse.microprofile.jwt.tck.util.TokenUtils
-
Utility method to generate a JWT string from a JSON resource file by signing it first with the private key
using RS256 algorithm and and encrypting next with the public key.
- signEncryptClaims(PrivateKey, String, PublicKey, String, String, boolean) - Static method in class org.eclipse.microprofile.jwt.tck.util.TokenUtils
-
Utility method to generate a JWT string from a JSON resource file by signing it first with the private key
using RS256 algorithm and encrypting next with the public key with an option to skip setting a content-type 'cty' parameter.