Uses of Class
org.springframework.vault.support.VaultTransitContext
Packages that use VaultTransitContext
Package
Description
Vault core support.
Classes supporting the Vault packages, such as value objects.
-
Uses of VaultTransitContext in org.springframework.vault.core
Methods in org.springframework.vault.core with parameters of type VaultTransitContextModifier and TypeMethodDescriptionMono<byte[]>ReactiveVaultTransitOperations.decrypt(String keyName, String ciphertext, VaultTransitContext transitContext) Decrypts the providedciphertextusing the named key.Mono<byte[]>ReactiveVaultTransitTemplate.decrypt(String keyName, String ciphertext, VaultTransitContext transitContext) byte[]VaultTransitOperations.decrypt(String keyName, String ciphertext, VaultTransitContext transitContext) Decrypts the providedciphertextusing the named key.byte[]VaultTransitTemplate.decrypt(String keyName, String ciphertext, VaultTransitContext transitContext) ReactiveVaultTransitOperations.encrypt(String keyName, byte[] plaintext, VaultTransitContext transitRequest) Encrypts the providedplaintextusing the named key.ReactiveVaultTransitTemplate.encrypt(String keyName, byte[] plaintext, VaultTransitContext transitContext) VaultTransitOperations.encrypt(String keyName, byte[] plaintext, VaultTransitContext transitRequest) Encrypts the providedplaintextusing the named key.VaultTransitTemplate.encrypt(String keyName, byte[] plaintext, VaultTransitContext transitContext) ReactiveVaultTransitOperations.rewrap(String keyName, String ciphertext, VaultTransitContext transitContext) Rewrap the provided cipher text using the latest version of the named key.ReactiveVaultTransitTemplate.rewrap(String keyName, String ciphertext, VaultTransitContext transitContext) VaultTransitOperations.rewrap(String keyName, String ciphertext, VaultTransitContext transitContext) Rewrap the provided cipher text using the latest version of the named key.VaultTransitTemplate.rewrap(String keyName, String ciphertext, VaultTransitContext transitContext) -
Uses of VaultTransitContext in org.springframework.vault.support
Methods in org.springframework.vault.support that return VaultTransitContextModifier and TypeMethodDescriptionVaultTransitContext.VaultTransitRequestBuilder.build()Build a newVaultTransitContextinstance.static VaultTransitContextVaultTransitContext.empty()static VaultTransitContextVaultTransitContext.fromContext(byte[] context) Create aVaultTransitContextgivencontextbytes.static VaultTransitContextVaultTransitContext.fromNonce(byte[] nonce) Create aVaultTransitContextgivennoncebytes.Ciphertext.getContext()Plaintext.getContext()Methods in org.springframework.vault.support with parameters of type VaultTransitContextModifier and TypeMethodDescriptionCiphertext.with(VaultTransitContext context) Create a newCiphertextobject from this ciphertext associated with the givenVaultTransitContext.Plaintext.with(VaultTransitContext context) Create a newPlaintextobject from this plain text associated with the givenVaultTransitContext.