Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bundle.md #360

Merged
merged 2 commits into from
Jan 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions content/en/about/bundle.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: Sigstore Bundle Format
weight: 4
---

Last updated October 31, 2024
Last updated January 14, 2025

Version 0.3.2

Expand Down Expand Up @@ -136,15 +136,12 @@ artifact at verification time.

#### DSSE

A DSSE envelope can contain arbitrary payloads. Currently Sigstore clients only process the
payload type `"application/vnd.in-toto+json"`. Verifiers must verify that the payload type is a
supported and expected type. DSSE envelopes contained in a Sigstore Bundle must only contain a
single signature (the DSSE spec allows multiple).
The DSSE envelope in a Sigstore Bundle must conform to the [in-toto Envelope layer specification](https://github.com/in-toto/attestation/blob/main/spec/v1/envelope.md) where `payloadType` is `"application/vnd.in-toto+json"` and the payload is an [in-toto statement](https://github.com/in-toto/attestation/blob/main/spec/v1/statement.md). DSSE envelopes in a Sigstore Bundle must also contain only a single signature (the DSSE spec allows multiple).

```json
"dsseEnvelope": {
{
"payload": "<Base64(JSON_PAYLOAD)>",
"payload": "<Base64(JSON_IN_TOTO_STATEMENT)>",
"payloadType": "application/vnd.in-toto+json",
"signatures": [{
"keyid": "<KEY_ID>",
Expand Down
Loading