diff --git a/verifier/src/advisories.rs b/verifier/src/advisories.rs index ef4ff9c..0e0ea74 100644 --- a/verifier/src/advisories.rs +++ b/verifier/src/advisories.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 The MobileCoin Foundation +// Copyright (c) 2023-2025 The MobileCoin Foundation use crate::{Accessor, SpacedStructName, VerificationOutput, Verifier}; use alloc::{ diff --git a/verifier/src/certificate_chain.rs b/verifier/src/certificate_chain.rs index a58a292..ed291b4 100644 --- a/verifier/src/certificate_chain.rs +++ b/verifier/src/certificate_chain.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 The MobileCoin Foundation +// Copyright (c) 2023-2025 The MobileCoin Foundation //! Trait and Error for verifying certificate chains diff --git a/verifier/src/error.rs b/verifier/src/error.rs index ffdbbcb..f9a98fc 100644 --- a/verifier/src/error.rs +++ b/verifier/src/error.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 The MobileCoin Foundation +// Copyright (c) 2023-2025 The MobileCoin Foundation //! Errors that can occur during verification diff --git a/verifier/src/evidence.rs b/verifier/src/evidence.rs index d68b310..34cd208 100644 --- a/verifier/src/evidence.rs +++ b/verifier/src/evidence.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 The MobileCoin Foundation +// Copyright (c) 2023-2025 The MobileCoin Foundation //! The full set of evidence needed for attesting a quote diff --git a/verifier/src/identity.rs b/verifier/src/identity.rs index 2026406..f7e45c1 100644 --- a/verifier/src/identity.rs +++ b/verifier/src/identity.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 The MobileCoin Foundation +// Copyright (c) 2023-2025 The MobileCoin Foundation //! Provides logic for verifying MRENCLAVE and MRSIGNER identities in combination with allowed //! [`Advisories`]. diff --git a/verifier/src/lib.rs b/verifier/src/lib.rs index 88497cb..f57230d 100644 --- a/verifier/src/lib.rs +++ b/verifier/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 The MobileCoin Foundation +// Copyright (c) 2023-2025 The MobileCoin Foundation #![doc = include_str!("../README.md")] #![deny(missing_docs, missing_debug_implementations, unsafe_code)] diff --git a/verifier/src/mbedtls.rs b/verifier/src/mbedtls.rs index 588123d..d805ac6 100644 --- a/verifier/src/mbedtls.rs +++ b/verifier/src/mbedtls.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 The MobileCoin Foundation +// Copyright (c) 2023-2025 The MobileCoin Foundation //! Implementation of certificate chain verification using MbedTls. diff --git a/verifier/src/qe_identity.rs b/verifier/src/qe_identity.rs index aa01302..e23c318 100644 --- a/verifier/src/qe_identity.rs +++ b/verifier/src/qe_identity.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 The MobileCoin Foundation +// Copyright (c) 2023-2025 The MobileCoin Foundation //! Handles the QE(Quoting Enclave) identity verification. //! diff --git a/verifier/src/qe_report_body.rs b/verifier/src/qe_report_body.rs index 24f454b..3f233e1 100644 --- a/verifier/src/qe_report_body.rs +++ b/verifier/src/qe_report_body.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 The MobileCoin Foundation +// Copyright (c) 2023-2025 The MobileCoin Foundation //! Verification of a QE(Quoting Enclave) report body. diff --git a/verifier/src/quote.rs b/verifier/src/quote.rs index c0d0cc9..f883412 100644 --- a/verifier/src/quote.rs +++ b/verifier/src/quote.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 The MobileCoin Foundation +// Copyright (c) 2023-2025 The MobileCoin Foundation use crate::{Accessor, Error, VerificationMessage, VerificationOutput, Verifier}; use core::fmt::Formatter; diff --git a/verifier/src/report_body.rs b/verifier/src/report_body.rs index b036da4..cec1234 100644 --- a/verifier/src/report_body.rs +++ b/verifier/src/report_body.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2018-2024 The MobileCoin Foundation +// Copyright (c) 2018-2025 The MobileCoin Foundation //! Verifiers which operate on the [`ReportBody`] diff --git a/verifier/src/struct_name.rs b/verifier/src/struct_name.rs index 25e6e13..a655d25 100644 --- a/verifier/src/struct_name.rs +++ b/verifier/src/struct_name.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 The MobileCoin Foundation +// Copyright (c) 2023-2025 The MobileCoin Foundation //! Provides a trait that provides a textual friendly version of a struct name. //! The names are all lowercase and use spaces between the words. diff --git a/verifier/src/tcb.rs b/verifier/src/tcb.rs index 72193cb..0e0418d 100644 --- a/verifier/src/tcb.rs +++ b/verifier/src/tcb.rs @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 The MobileCoin Foundation +// Copyright (c) 2023-2025 The MobileCoin Foundation //! Verifier for TCB(Trusted Computing Base) information //!