io.quarkus.vault.transit.DecryptionRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-vault Show documentation
Show all versions of quarkus-vault Show documentation
Store your credentials securely in HashiCorp Vault
package io.quarkus.vault.transit;
import java.util.List;
import io.quarkus.vault.VaultTransitSecretEngine;
/**
* A request to decrypt a ciphertext, with an optional transit context.
*
* @see VaultTransitSecretEngine#decrypt(String, List)
*/
public class DecryptionRequest extends VaultTransitBatchItem {
private String ciphertext;
public DecryptionRequest(String ciphertext) {
this(ciphertext, null);
}
public DecryptionRequest(String ciphertext, TransitContext transitContext) {
super(transitContext);
this.ciphertext = ciphertext;
}
public String getCiphertext() {
return ciphertext;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy