From 9eec506bd1f7eccf1918c6d776c0ac1365a37cc5 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Fri, 1 Nov 2024 10:39:07 +0000 Subject: [PATCH] doc: add notes to Veraison extensions Mark Veraison extension Appraisal fields as such in the documentation. Signed-off-by: Sergei Trofimov --- src/appraisal.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/appraisal.rs b/src/appraisal.rs index 3b345eb..a1380db 100644 --- a/src/appraisal.rs +++ b/src/appraisal.rs @@ -23,10 +23,13 @@ pub struct Appraisal { pub policy_id: Option, /// Evidence claims extracted and annotated by the verifier from the evidence supplied by the /// attester + /// (note: this is a Veraison project extension to EAR) pub annotated_evidence: BTreeMap, /// Addition claims made as part of the appraisal based on the policy indicated by `policy_id` + /// (note: this is a Veraison project extension to EAR) pub policy_claims: BTreeMap, /// Claims about the public key that is being attested + /// (note: this is a Veraison project extension to EAR) pub key_attestation: Option, /// extension claims pub extensions: Extensions,