File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 6.0.12]
9+
10+ [ 6.0.12 ] : https://github.com/microsoft/CCF/releases/tag/ccf-6.0.12
11+
12+ ### Fixed
13+
14+ - Correctly validate the full AMD ASK endorsement chain (#7233 )
15+
816## [ 6.0.11]
917
1018[ 6.0.11 ] : https://github.com/microsoft/CCF/releases/tag/ccf-6.0.11
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ namespace ccf::pal
159159
160160 auto chip_cert_verifier = ccf::crypto::make_verifier (chip_certificate);
161161 if (!chip_cert_verifier->verify_certificate (
162- {&root_certificate, &sev_version_certificate}))
162+ {&root_certificate}, { &sev_version_certificate}))
163163 {
164164 throw std::logic_error (
165165 " SEV-SNP: The chain of signatures from the root of trust to this "
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " ccf"
7- version = " 6.0.11 "
7+ version = " 6.0.12 "
88authors = [
99 { name =" CCF Team" , email =" CCF-Sec@microsoft.com" },
1010]
You can’t perform that action at this time.
0 commit comments