Skip to content

Commit e58a76b

Browse files
Copilotcjen1-msft
andauthored
Cherry-pick #7233 to 6.x LTS (#7235)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: cjen1-msft <chrisjensen@microsoft.com>
1 parent 00b8d76 commit e58a76b

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and 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

include/ccf/pal/attestation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 "

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "ccf"
7-
version = "6.0.11"
7+
version = "6.0.12"
88
authors = [
99
{ name="CCF Team", email="CCF-Sec@microsoft.com" },
1010
]

0 commit comments

Comments
 (0)