com.quorum.tessera.key.vault.KeyVaultService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of key-vault-api Show documentation
Show all versions of key-vault-api Show documentation
Tessera is a stateless Java system that is used to enable the encryption, decryption, and distribution of private transactions for Quorum.
package com.quorum.tessera.key.vault;
import com.quorum.tessera.config.vault.data.GetSecretData;
import com.quorum.tessera.config.vault.data.SetSecretData;
public interface KeyVaultService {
String getSecret(U getSecretData);
Object setSecret(T setSecretData);
}