DSSE

Definition

DSSE stands for “Digital Signature for Secure Enclaves,” a security mechanism used to ensure the integrity and authenticity of data within secure enclaves. It involves the use of digital signatures to verify that the data has not been tampered with and originates from a trusted source. This is crucial in environments where sensitive data is processed, as it helps protect against unauthorized access and data breaches.

Secure Settings Example

enclave:
  security:
    digitalSignature:
      enabled: true
      keyManagement:
        type: HSM
        keyRotationInterval: 30d
      verification:
        enforceStrictMode: true

Insecure Settings Example

enclave:
  security:
    digitalSignature:
      enabled: false
      keyManagement:
        type: none
      verification:
        enforceStrictMode: false