Package | Description |
---|---|
org.springframework.vault.core |
Vault core support.
|
org.springframework.vault.support |
Classes supporting the Vault packages, such as value objects.
|
Modifier and Type | Method and Description |
---|---|
default TransformCiphertext |
VaultTransformOperations.encode(String roleName,
byte[] plaintext,
VaultTransformContext transformRequest)
Encode the provided plaintext using the named role.
|
TransformCiphertext |
VaultTransformTemplate.encode(String roleName,
TransformPlaintext plaintext) |
TransformCiphertext |
VaultTransformOperations.encode(String roleName,
TransformPlaintext plaintext)
Encode the provided plaintext using the named role.
|
Modifier and Type | Method and Description |
---|---|
TransformPlaintext |
VaultTransformTemplate.decode(String roleName,
TransformCiphertext ciphertext) |
TransformPlaintext |
VaultTransformOperations.decode(String roleName,
TransformCiphertext ciphertext)
Decode the provided ciphertext using the named role.
|
Modifier and Type | Method and Description |
---|---|
List<VaultTransformDecodeResult> |
VaultTransformTemplate.decode(String roleName,
List<TransformCiphertext> batchRequest) |
List<VaultTransformDecodeResult> |
VaultTransformOperations.decode(String roleName,
List<TransformCiphertext> batchRequest)
Decode the provided batch of ciphertext using the role given and transformation in
each list item.
|
Modifier and Type | Method and Description |
---|---|
protected TransformCiphertext |
VaultTransformEncodeResult.get0() |
static TransformCiphertext |
TransformCiphertext.of(String ciphertext)
Factory method to create
TransformCiphertext from the given
ciphertext . |
TransformCiphertext |
TransformCiphertext.with(VaultTransformContext context)
Create a new
TransformCiphertext object from this ciphertext associated
with the given VaultTransformContext . |
Constructor and Description |
---|
VaultTransformEncodeResult(TransformCiphertext cipherText)
Create
VaultTransformEncodeResult for a successfully encrypted
TransformCiphertext . |
Copyright © 2016–2020 Pivotal Software, Inc.. All rights reserved.