JwtEncryptionBuilder |
JwtSignature.innerSign() |
Sign the claims with a key loaded from the location set with the "smallrye.jwt.sign.key.location"
property or the key content set with the "smallrye.jwt.sign.key" property and encrypt the inner JWT
by moving to JwtEncryptionBuilder.
|
JwtEncryptionBuilder |
JwtSignature.innerSign(String keyLocation) |
Sign the claims with a private or secret key loaded from the custom location
which can point to a PEM, JWK or JWK set keys and encrypt the inner JWT by moving to JwtEncryptionBuilder.
|
JwtEncryptionBuilder |
JwtSignature.innerSign(PrivateKey signingKey) |
|
JwtEncryptionBuilder |
JwtSignature.innerSign(SecretKey signingKey) |
|
JwtEncryptionBuilder |
JwtSignature.innerSignWithSecret(String secret) |
Sign the claims with a secret key string and encrypt the inner JWT by moving to JwtEncryptionBuilder.
|
String |
JwtSignature.sign() |
Sign the claims with a key loaded from the location set with the "smallrye.jwt.sign.key.location" property
or the key content set with the "smallrye.jwt.sign.key" property.
|
String |
JwtSignature.sign(String keyLocation) |
Sign the claims with a private or secret key loaded from the custom location
which can point to a PEM, JWK or JWK set keys.
|
String |
JwtSignature.sign(PrivateKey signingKey) |
|
String |
JwtSignature.sign(SecretKey signingKey) |
Sign the claims with SecretKey
'HS256' algorithm will be used unless a different algorithm has been set with JwtSignatureBuilder or
'smallrye.jwt.new-token.signature-algorithm' property.
|
String |
JwtSignature.signWithSecret(String secret) |
Sign the claims with a secret key string.
|