Uses of Class
org.springframework.vault.support.Plaintext
Packages that use Plaintext
Package
Description
Vault core support.
Classes supporting the Vault packages, such as value objects.
-
Uses of Plaintext in org.springframework.vault.core
Methods in org.springframework.vault.core that return PlaintextModifier and TypeMethodDescriptionVaultTransitOperations.decrypt(String keyName, Ciphertext ciphertext) Decrypts the provided cipher text using the named key.VaultTransitTemplate.decrypt(String keyName, Ciphertext ciphertext) Methods in org.springframework.vault.core that return types with arguments of type PlaintextModifier and TypeMethodDescriptionReactiveVaultTransitOperations.decrypt(String keyName, Ciphertext ciphertext) Decrypts the provided cipher text using the named key.ReactiveVaultTransitTemplate.decrypt(String keyName, Ciphertext ciphertext) Methods in org.springframework.vault.core with parameters of type PlaintextModifier and TypeMethodDescriptionEncrypts the providedplaintextusing the named key.Encrypts the providedplaintextusing the named key.Create a HMAC usingkeyNameof givenPlaintextusing the default hash algorithm.Create a HMAC usingkeyNameof givenPlaintextusing the default hash algorithm.Create a cryptographic signature usingkeyNameof the givenPlaintextand the default hash algorithm.Create a cryptographic signature usingkeyNameof the givenPlaintextand the default hash algorithm.booleanbooleanMethod parameters in org.springframework.vault.core with type arguments of type PlaintextModifier and TypeMethodDescriptionEncrypts the provided batch ofplaintextusing the named key and context.Encrypts the provided batch ofplaintextusing the named key and context. -
Uses of Plaintext in org.springframework.vault.support
Methods in org.springframework.vault.support that return PlaintextModifier and TypeMethodDescriptionstatic PlaintextPlaintext.empty()Factory method to create an emptyPlaintext.protected PlaintextVaultDecryptionResult.get0()VaultHmacRequest.getPlaintext()VaultSignatureVerificationRequest.getPlaintext()VaultSignRequest.getPlaintext()static PlaintextPlaintext.of(byte[] plaintext) Factory method to createPlaintextfrom a byte sequence.static Plaintextstatic PlaintextPlaintext.with(VaultTransitContext context) Create a newPlaintextobject from this plain text associated with the givenVaultTransitContext.Methods in org.springframework.vault.support with parameters of type PlaintextModifier and TypeMethodDescriptionstatic VaultHmacRequestCreate a newVaultHmacRequestgivenPlaintext.static VaultSignRequestCreate a newVaultSignRequestgivenPlaintext.Configure the input to be used to create the digest.VaultSignatureVerificationRequest.VaultSignatureVerificationRequestBuilder.plaintext(Plaintext input) Configure thePlaintextinput to be used to verify the signature.Configure the input to be used to create the signature.Constructors in org.springframework.vault.support with parameters of type PlaintextModifierConstructorDescriptionVaultDecryptionResult(Plaintext plaintext) CreateVaultDecryptionResultfor a successfully decryptedPlaintext.