Skip to content

Commit 9fc4534

Browse files
authored
Add 2025Q2 SVR2 enclaves to ACCEPTABLE_SW_ADVISORIES
1 parent 7aef688 commit 9fc4534

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

rust/attest/src/constants.rs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pub const ENCLAVE_ID_SVRB_STAGING: &[u8] =
3434

3535
/// Map from MREnclave to intel SW advisories that are known to be mitigated in the
3636
/// build with that MREnclave value
37-
pub(crate) const ACCEPTABLE_SW_ADVISORIES: &SmallMap<&'static [u8], &'static [&'static str], 5> =
37+
pub(crate) const ACCEPTABLE_SW_ADVISORIES: &SmallMap<&'static [u8], &'static [&'static str], 7> =
3838
&SmallMap::new([
3939
(
4040
ENCLAVE_ID_SVR2_STAGING_PREQUANTUM,
@@ -44,6 +44,14 @@ pub(crate) const ACCEPTABLE_SW_ADVISORIES: &SmallMap<&'static [u8], &'static [&'
4444
ENCLAVE_ID_SVR2_PROD_PREQUANTUM,
4545
&["INTEL-SA-00615", "INTEL-SA-00657"] as &[&str],
4646
),
47+
(
48+
ENCLAVE_ID_SVR2_STAGING_2025Q2,
49+
&["INTEL-SA-00615", "INTEL-SA-00657"] as &[&str],
50+
),
51+
(
52+
ENCLAVE_ID_SVR2_PROD_2025Q2,
53+
&["INTEL-SA-00615", "INTEL-SA-00657"] as &[&str],
54+
),
4755
(
4856
ENCLAVE_ID_SVR2_STAGING,
4957
&["INTEL-SA-00615", "INTEL-SA-00657"] as &[&str],

0 commit comments

Comments
 (0)