Interface SealedSecret


public interface SealedSecret
An object which represents the information required to unseal a secret which has previously been sealed by a SecretServiceBackend implementation. Should only be constructed by SecretService implementations. Once constructed instances can be serialized to String representation using the toString(). This String can then be saved in persistent data source. Serialized Strings can be used to rebuild a SealedSecret object using the from(String). This object can then be unsealed by the same SecretServiceBackend which was used to originally seal it.
Since:
4.0.0
  • Method Details