File tree Expand file tree Collapse file tree 8 files changed +35
-2
lines changed
Expand file tree Collapse file tree 8 files changed +35
-2
lines changed Original file line number Diff line number Diff line change 1+ name : spdx
2+
3+ on :
4+ pull_request :
5+ branches : [main]
6+ push :
7+ branches : [main]
8+ workflow_dispatch :
9+
10+ permissions :
11+ contents : read
12+
13+ jobs :
14+ check-spdx-headers :
15+ runs-on : ubuntu-latest
16+ steps :
17+ - uses : actions/checkout@v4
18+ - uses : enarx/spdx@master
19+ with :
20+ licenses : MIT
Original file line number Diff line number Diff line change 11#!/usr/bin/env python3
2+ # SPDX-License-Identifier: MIT
23
34"""
45Example usage of pysnputils.
56"""
7+
68from __future__ import annotations
79
810import argparse
Original file line number Diff line number Diff line change 11#!/usr/bin/env python3
2+ # SPDX-License-Identifier: MIT
23
34"""
45Example usage of pysnputils.fetch.
56"""
7+
68from __future__ import annotations
79
810import argparse
Original file line number Diff line number Diff line change 11#!/usr/bin/env python3
2+ # SPDX-License-Identifier: MIT
23
34"""
45Verify SNP attestation reports and VCEK certificate chains.
56"""
7+
68from __future__ import annotations
79
810import argparse
Original file line number Diff line number Diff line change 1+ # SPDX-License-Identifier: MIT
2+
13"""
24pysnputils - Python utilities for AMD SEV-SNP attestation.
35"""
Original file line number Diff line number Diff line change 1+ # SPDX-License-Identifier: MIT
2+
13"""
2- Fetch VCEK certificate chains from AMD KDS.
3- AMD KDS Revision: 1.00 (January 2025)
4+ Fetch VCEK certificate chains and CRLs from AMD KDS.
45"""
56
67__all__ = [
Original file line number Diff line number Diff line change 1+ # SPDX-License-Identifier: MIT
2+
13"""
24AMD SEV-SNP Attestation Report Type Definitions.
35"""
Original file line number Diff line number Diff line change 1+ # SPDX-License-Identifier: MIT
2+
13"""
24Verify SNP attestation reports and VCEK certificate chains.
35"""
You can’t perform that action at this time.
0 commit comments