1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright 2021 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
//! # AttestKey operation
//!
//! Produce an attestation token as proof that the given
//! key was produced and is stored in the hardware backend.
use derivative::Derivative;
use zeroize::Zeroizing;

/// Native operation for key attestation
#[derive(Derivative)]
#[derivative(Debug)]
#[non_exhaustive]
pub enum Operation {
    /// Attestation via TPM 2.0 ActivateCredential operation
    ActivateCredential {
        /// Name of key to be attested
        attested_key_name: String,
        /// Blob of data representing the encrypted credential
        #[derivative(Debug = "ignore")]
        credential_blob: Zeroizing<Vec<u8>>,
        /// Blob of data representing the encrypted secret
        #[derivative(Debug = "ignore")]
        secret: Zeroizing<Vec<u8>>,
        /// Name of key to be used for attesting
        attesting_key_name: Option<String>,
    },
}

/// Native result of key attestation
#[derive(Derivative)]
#[derivative(Debug)]
#[non_exhaustive]
pub enum Result {
    /// Result of attestation via TPM 2.0 ActivateCredential operation
    ActivateCredential {
        /// Decrypted credential
        #[derivative(Debug = "ignore")]
        credential: Zeroizing<Vec<u8>>,
    },
}