Uses of Class
org.springframework.vault.support.TransformPlaintext
Package
Description
Vault core support.
Classes supporting the Vault packages, such as value objects.
-
Uses of TransformPlaintext in org.springframework.vault.core
Modifier and TypeMethodDescriptionVaultTransformOperations.decode
(String roleName, TransformCiphertext ciphertext) Decode the provided ciphertext using the named role.VaultTransformTemplate.decode
(String roleName, TransformCiphertext ciphertext) Modifier and TypeMethodDescriptionVaultTransformOperations.encode
(String roleName, TransformPlaintext plaintext) Encode the provided plaintext using the named role.VaultTransformTemplate.encode
(String roleName, TransformPlaintext plaintext) Modifier and TypeMethodDescriptionVaultTransformOperations.encode
(String roleName, List<TransformPlaintext> batchRequest) Encode the provided batch of plaintext using the role given and transformation in each list item.VaultTransformTemplate.encode
(String roleName, List<TransformPlaintext> batchRequest) -
Uses of TransformPlaintext in org.springframework.vault.support
Modifier and TypeMethodDescriptionstatic TransformPlaintext
TransformPlaintext.empty()
Factory method to create an emptyTransformPlaintext
.protected TransformPlaintext
VaultTransformDecodeResult.get0()
static TransformPlaintext
TransformPlaintext.of
(byte[] plaintext) Factory method to createTransformPlaintext
from a byte sequence.static TransformPlaintext
Factory method to createTransformPlaintext
using fromString
.static TransformPlaintext
TransformPlaintext.with
(VaultTransformContext context) Create a newTransformPlaintext
object from this plaintext associated with the givenVaultTransformContext
.ModifierConstructorDescriptionVaultTransformDecodeResult
(TransformPlaintext plaintext) CreateVaultTransformDecodeResult
for a successfully decryptedTransformPlaintext
.