Uses of Interface
io.smallrye.jwt.build.JwtEncryptionBuilder
Packages that use JwtEncryptionBuilder
-
Uses of JwtEncryptionBuilder in io.smallrye.jwt.build
Methods in io.smallrye.jwt.build that return JwtEncryptionBuilderModifier and TypeMethodDescriptionJwtEncryptionBuilder.contentAlgorithm(ContentEncryptionAlgorithm algorithm) Set an 'enc' content encryption algorithm.default JwtEncryptionBuilderJwtEncryptionBuilder.contentEncryptionAlgorithm(ContentEncryptionAlgorithm algorithm) Deprecated.Custom JWT encryption header.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 toJwtEncryptionBuilder.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 toJwtEncryptionBuilder.JwtSignature.innerSign(PrivateKey signingKey) Sign the claims withPrivateKeyand encrypt the inner JWT by moving toJwtEncryptionBuilder.Sign the claims withSecretKeyand encrypt the inner JWT by moving toJwtEncryptionBuilder.JwtSignature.innerSignWithSecret(String secret) Sign the claims with a secret key string and encrypt the inner JWT by moving toJwtEncryptionBuilder.JwtClaimsBuilder.jwe()Set JsonWebEncryption headers and encrypt the claims by moving toJwtEncryptionBuilderJwtEncryptionBuilder.keyAlgorithm(KeyEncryptionAlgorithm algorithm) Set an 'alg' key encryption algorithm.default JwtEncryptionBuilderJwtEncryptionBuilder.keyEncryptionAlgorithm(KeyEncryptionAlgorithm algorithm) Deprecated.default JwtEncryptionBuilderJwtEncryptionBuilder.keyEncryptionKeyId(String keyId) Deprecated.Set a 'kid' key encryption key id.Set a type (`typ`) header.
contentAlgorithm(io.smallrye.jwt.algorithm.ContentEncryptionAlgorithm)