Package org.springframework.vault.core
Class VaultTransitTemplate
java.lang.Object
org.springframework.vault.core.VaultTransitTemplate
- All Implemented Interfaces:
VaultTransitOperations
Default implementation of
VaultTransitOperations
.- Author:
- Mark Paluch, Sven Schürmann, Praveendra Singh, Luander Ribeiro, Mikko Koli, My-Lan Aragon, Nanne Baars
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
configureKey
(String keyName, VaultTransitKeyConfiguration keyConfiguration) Create a new named encryption key given aname
.void
Create a new named encryption key given aname
.void
createKey
(String keyName, VaultTransitKeyCreationRequest createKeyRequest) Create a new named encryption key given aname
andVaultTransitKeyCreationRequest
.Decrypts the provided plain text using the named key.byte[]
decrypt
(String keyName, String ciphertext, VaultTransitContext transitContext) Decrypts the providedciphertext
using the named key.decrypt
(String keyName, List<Ciphertext> batchRequest) Decrypts the provided batch of cipher text using the named key and context.decrypt
(String keyName, Ciphertext ciphertext) Decrypts the provided cipher text using the named key.void
Deletes a named encryption key.encrypt
(String keyName, byte[] plaintext, VaultTransitContext transitContext) Encrypts the providedplaintext
using the named key.Encrypts the provided plain text using the named key.Encrypts the provided batch ofplaintext
using the named key and context.Encrypts the providedplaintext
using the named key.exportKey
(String keyName, TransitKeyType type) Returns the value of the named encryption key.Create a HMAC usingkeyName
of givenPlaintext
using the default hash algorithm.getHmac
(String keyName, VaultHmacRequest hmacRequest) Create a HMAC usingkeyName
of givenVaultHmacRequest
using the default hash algorithm.Return information about a named encryption key.getKeys()
Get aList
of transit key names.Rewrap the provided cipher text using the latest version of the named key.rewrap
(String keyName, String ciphertext, VaultTransitContext transitContext) Rewrap the provided cipher text using the latest version of the named key.rewrap
(String keyName, List<Ciphertext> batchRequest) Rewrap the provided batch of cipher text using the latest version of the named key.void
Rotates the version of the named key.Create a cryptographic signature usingkeyName
of the givenPlaintext
and the default hash algorithm.sign
(String keyName, VaultSignRequest signRequest) Create a cryptographic signature usingkeyName
of the givenVaultSignRequest
and the specified hash algorithm.toString()
boolean
verify
(String keyName, VaultSignatureVerificationRequest verificationRequest) Verify the cryptographic signature usingkeyName
of the givenVaultSignRequest
.
-
Constructor Details
-
VaultTransitTemplate
- Parameters:
vaultOperations
- must not be null.path
- must not be empty or null.
-
-
Method Details
-
createKey
Description copied from interface:VaultTransitOperations
Create a new named encryption key given aname
.- Specified by:
createKey
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.
-
createKey
Description copied from interface:VaultTransitOperations
Create a new named encryption key given aname
andVaultTransitKeyCreationRequest
. The key options set here cannot be changed after key creation.- Specified by:
createKey
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.createKeyRequest
- must not be null.
-
getKeys
Description copied from interface:VaultTransitOperations
Get aList
of transit key names.- Specified by:
getKeys
in interfaceVaultTransitOperations
- Returns:
List
of transit key names.
-
configureKey
Description copied from interface:VaultTransitOperations
Create a new named encryption key given aname
.- Specified by:
configureKey
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.keyConfiguration
- must not be null.
-
exportKey
Description copied from interface:VaultTransitOperations
Returns the value of the named encryption key. Depending on the type of key, different information may be returned. The key must be exportable to support this operation.- Specified by:
exportKey
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.type
- must not be null.- Returns:
- the
RawTransitKey
.
-
getKey
Description copied from interface:VaultTransitOperations
Return information about a named encryption key.- Specified by:
getKey
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.- Returns:
- the
VaultTransitKey
.
-
deleteKey
Description copied from interface:VaultTransitOperations
Deletes a named encryption key. It will no longer be possible to decrypt any data encrypted with the named key.- Specified by:
deleteKey
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.
-
rotate
Description copied from interface:VaultTransitOperations
Rotates the version of the named key. After rotation, new plain text requests will be encrypted with the new version of the key. To upgrade ciphertext to be encrypted with the latest version of the key, useVaultTransitOperations.rewrap(String, String)
.- Specified by:
rotate
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.- See Also:
-
encrypt
Description copied from interface:VaultTransitOperations
Encrypts the provided plain text using the named key. The givenplaintext
is encoded into bytes using thedefault charset
. UseVaultTransitOperations.encrypt(String, org.springframework.vault.support.Plaintext)
to construct aPlaintext
object from bytes to avoidCharset
mismatches.- Specified by:
encrypt
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.plaintext
- must not be empty or null.- Returns:
- cipher text.
-
encrypt
Description copied from interface:VaultTransitOperations
Encrypts the providedplaintext
using the named key.- Specified by:
encrypt
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.plaintext
- must not be null.- Returns:
- cipher text.
-
encrypt
Description copied from interface:VaultTransitOperations
Encrypts the providedplaintext
using the named key.- Specified by:
encrypt
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.plaintext
- must not be empty or null.transitContext
- must not be null. UseVaultTransitContext.empty()
if no request options provided.- Returns:
- cipher text.
-
encrypt
Description copied from interface:VaultTransitOperations
Encrypts the provided batch ofplaintext
using the named key and context. The encryption is done using transit backend's batch operation.- Specified by:
encrypt
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.batchRequest
- a list ofPlaintext
which includes plain text and an optional context.- Returns:
- the encrypted result in the order of
batchRequest
plaintexts.
-
decrypt
Description copied from interface:VaultTransitOperations
Decrypts the provided plain text using the named key. The decodedplaintext
is decoded intoString
thedefault charset
. UseVaultTransitOperations.decrypt(String, org.springframework.vault.support.Ciphertext)
to obtain aCiphertext
object that allows to control theCharset
for later consumption.- Specified by:
decrypt
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.ciphertext
- must not be empty or null.- Returns:
- plain text.
-
decrypt
Description copied from interface:VaultTransitOperations
Decrypts the provided cipher text using the named key.- Specified by:
decrypt
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.ciphertext
- must not be null.- Returns:
- plain text.
-
decrypt
Description copied from interface:VaultTransitOperations
Decrypts the providedciphertext
using the named key.- Specified by:
decrypt
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.ciphertext
- must not be empty or null.transitContext
- must not be null. UseVaultTransitContext.empty()
if no request options provided.- Returns:
- cipher text.
-
decrypt
Description copied from interface:VaultTransitOperations
Decrypts the provided batch of cipher text using the named key and context. The* decryption is done using transit backend's batch operation.- Specified by:
decrypt
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.batchRequest
- a list ofCiphertext
which includes plain text and an optional context.- Returns:
- the decrypted result in the order of
batchRequest
ciphertexts.
-
rewrap
Description copied from interface:VaultTransitOperations
Rewrap the provided cipher text using the latest version of the named key. Because this never returns plain text, it is possible to delegate this functionality to untrusted users or scripts.- Specified by:
rewrap
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.ciphertext
- must not be empty or null.- Returns:
- cipher text.
- See Also:
-
rewrap
Description copied from interface:VaultTransitOperations
Rewrap the provided cipher text using the latest version of the named key. Because this never returns plain text, it is possible to delegate this functionality to untrusted users or scripts.- Specified by:
rewrap
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.ciphertext
- must not be empty or null.transitContext
- must not be null. UseVaultTransitContext.empty()
if no request options provided.- Returns:
- cipher text.
- See Also:
-
rewrap
Description copied from interface:VaultTransitOperations
Rewrap the provided batch of cipher text using the latest version of the named key.- Specified by:
rewrap
in interfaceVaultTransitOperations
batchRequest
- a list ofCiphertext
which includes cipher text and a context- Returns:
- the rewrapped result in the order of
batchRequest
ciphertexts. - See Also:
-
getHmac
Description copied from interface:VaultTransitOperations
Create a HMAC usingkeyName
of givenPlaintext
using the default hash algorithm. The key can be of any type supported by transit; the raw key will be marshaled into bytes to be used for the HMAC function. If the key is of a type that supports rotation, the latest (current) version will be used.- Specified by:
getHmac
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.plaintext
- must not be null.- Returns:
- the digest of given data the default hash algorithm and the named key.
-
getHmac
Description copied from interface:VaultTransitOperations
Create a HMAC usingkeyName
of givenVaultHmacRequest
using the default hash algorithm. The key can be of any type supported by transit; the raw key will be marshaled into bytes to be used for the HMAC function. If the key is of a type that supports rotation, configuredVaultHmacRequest.getKeyVersion()
will be used.- Specified by:
getHmac
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.hmacRequest
- theVaultHmacRequest
, must not be null.- Returns:
- the digest of given data the default hash algorithm and the named key.
-
sign
Description copied from interface:VaultTransitOperations
Create a cryptographic signature usingkeyName
of the givenPlaintext
and the default hash algorithm. The key must be of a type that supports signing.- Specified by:
sign
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.plaintext
- must not be empty or null.- Returns:
- Signature for
Plaintext
.
-
sign
Description copied from interface:VaultTransitOperations
Create a cryptographic signature usingkeyName
of the givenVaultSignRequest
and the specified hash algorithm. The key must be of a type that supports signing.- Specified by:
sign
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.signRequest
-VaultSignRequest
must not be empty or null.- Returns:
- Signature for
VaultSignRequest
.
-
verify
Description copied from interface:VaultTransitOperations
- Specified by:
verify
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.plainText
- must not be null.signature
- Signature to be verified, must not be null.- Returns:
- true if the signature is valid, false otherwise.
-
verify
public SignatureValidation verify(String keyName, VaultSignatureVerificationRequest verificationRequest) Description copied from interface:VaultTransitOperations
Verify the cryptographic signature usingkeyName
of the givenVaultSignRequest
.- Specified by:
verify
in interfaceVaultTransitOperations
- Parameters:
keyName
- must not be empty or null.verificationRequest
-VaultSignatureVerificationRequest
must not be null.- Returns:
- the resulting
SignatureValidation
.
-
toString
-