pub trait CertificateApi {
    type Error;
    fn get_certificate(&self, cert_id: Uuid) -> Result<Certificate, Self::Error>;
fn new_certificate(
        &self,
        body: NewCertificateRequest
    ) -> Result<TaskResult, Self::Error>; }

Associated Types

Required methods

Retrieve a certificate.

Request a new certificate for an Enclave application

Implementors