Uses of Class
org.springframework.vault.support.TransformCiphertext
Packages that use TransformCiphertext
Package
Description
Vault core support.
Classes supporting the Vault packages, such as value objects.
-
Uses of TransformCiphertext in org.springframework.vault.core
Methods in org.springframework.vault.core that return TransformCiphertextModifier and TypeMethodDescriptiondefault TransformCiphertext
VaultTransformOperations.encode
(String roleName, byte[] plaintext, VaultTransformContext transformRequest) Encode the provided plaintext using the named role.VaultTransformOperations.encode
(String roleName, TransformPlaintext plaintext) Encode the provided plaintext using the named role.VaultTransformTemplate.encode
(String roleName, TransformPlaintext plaintext) Methods in org.springframework.vault.core with parameters of type TransformCiphertextModifier and TypeMethodDescriptionVaultTransformOperations.decode
(String roleName, TransformCiphertext ciphertext) Decode the provided ciphertext using the named role.VaultTransformTemplate.decode
(String roleName, TransformCiphertext ciphertext) Method parameters in org.springframework.vault.core with type arguments of type TransformCiphertextModifier and TypeMethodDescriptionVaultTransformOperations.decode
(String roleName, List<TransformCiphertext> batchRequest) Decode the provided batch of ciphertext using the role given and transformation in each list item.VaultTransformTemplate.decode
(String roleName, List<TransformCiphertext> batchRequest) -
Uses of TransformCiphertext in org.springframework.vault.support
Methods in org.springframework.vault.support that return TransformCiphertextModifier and TypeMethodDescriptionprotected TransformCiphertext
VaultTransformEncodeResult.get0()
static TransformCiphertext
Factory method to createTransformCiphertext
from the givenciphertext
.TransformCiphertext.with
(VaultTransformContext context) Create a newTransformCiphertext
object from this ciphertext associated with the givenVaultTransformContext
.Constructors in org.springframework.vault.support with parameters of type TransformCiphertextModifierConstructorDescriptionVaultTransformEncodeResult
(TransformCiphertext cipherText) CreateVaultTransformEncodeResult
for a successfully encryptedTransformCiphertext
.