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 |
---|---|
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 |
---|---|
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 |
---|---|
List<VaultTransformEncodeResult> |
VaultTransformTemplate.encode(String roleName,
List<TransformPlaintext> batchRequest) |
List<VaultTransformEncodeResult> |
VaultTransformOperations.encode(String roleName,
List<TransformPlaintext> batchRequest)
Encode the provided batch of plaintext using the role given and transformation in
each list item.
|
Modifier and Type | Method and Description |
---|---|
static TransformPlaintext |
TransformPlaintext.empty()
Factory method to create an empty
TransformPlaintext . |
protected TransformPlaintext |
VaultTransformDecodeResult.get0() |
static TransformPlaintext |
TransformPlaintext.of(byte[] plaintext)
Factory method to create
TransformPlaintext from a byte sequence. |
static TransformPlaintext |
TransformPlaintext.of(String plaintext)
Factory method to create
TransformPlaintext using from String . |
static TransformPlaintext |
TransformPlaintext.of(String plaintext,
Charset charset)
|
TransformPlaintext |
TransformPlaintext.with(VaultTransformContext context)
Create a new
TransformPlaintext object from this plaintext associated with
the given VaultTransformContext . |
Constructor and Description |
---|
VaultTransformDecodeResult(TransformPlaintext plaintext)
Create
VaultTransformDecodeResult for a successfully decrypted
TransformPlaintext . |
Copyright © 2016–2021 Pivotal Software, Inc.. All rights reserved.