Keyless Signatures
This page explains how the keyless signatures work in Cosign. This signature mode relies on the Sigstore Public Good Instance.
Quickstart
NOTE: You will need access to a container registry for cosign to work with. ttl.sh offers free, short-lived (ie: hours), anonymous container image hosting if you just want to try these commands out.
Using ttl.sh
and crane for to prepare the image that we want to sign, run the following:
$ SRC_IMAGE=busybox
$ SRC_DIGEST=$(crane digest busybox)
$ IMAGE_URI=ttl.sh/$(uuidgen | head -c 8 | tr 'A-Z' 'a-z')
$ crane cp $SRC_IMAGE@$SRC_DIGEST $IMAGE_URI:1h
$ IMAGE_URI_DIGEST=$IMAGE_URI@$SRC_DIGEST
Using the image that we prepared above, run through the following to perform Keyless signing and Keyless verifying.
Keyless Signing
$ COSIGN_EXPERIMENTAL=1 cosign sign $IMAGE_URI_DIGEST
Generating ephemeral keys...
Retrieving signed certificate...
Note that there may be personally identifiable information associated with this signed artifact.
This may include the email address associated with the account with which you authenticate.
This information will be used for signing this artifact and will be stored in public transparency logs and cannot be removed later.
By typing 'y', you attest that you grant (or have permission to grant) and agree to have this information stored permanently in transparency logs.
Are you sure you want to continue? (y/[N]): y
Your browser will now be opened to:
https://oauth2.sigstore.dev/auth/auth?access_type=online&client_id=sigstore&code_challenge=Dl6DvO9FOJ2G2rb0isnG5-S1hAbcQV6PkJgDlDyFqGM&code_challenge_method=S256&nonce=2KyBdYtLSqyLGOwUkt1ij1Fiu30&redirect_uri=http%3A%2F%2Flocalhost%3A55362%2Fauth%2Fcallback&response_type=code&scope=openid+email&state=2KyBdXb8zadBfqMdbVoAIz88OBy
Successfully verified SCT...
tlog entry created with index: 12151804
Pushing signature to: ttl.sh/ace19e66
Keyless verifying
$ COSIGN_EXPERIMENTAL=1 cosign verify $IMAGE_URI_DIGEST
Verification for ttl.sh/ace19e66@sha256:7b3ccabffc97de872a30dfd234fd972a66d247c8cfc69b0550f276481852627c --
The following checks were performed on each of these signatures:
- The cosign claims were validated
- Existence of the claims in the transparency log was verified offline
- Any certificates were verified against the Fulcio roots.
[{"critical":{"identity":{"docker-reference":"ttl.sh/ace19e66"},"image":{"docker-manifest-digest":"sha256:7b3ccabffc97de872a30dfd234fd972a66d247c8cfc69b0550f276481852627c"},"type":"cosign container image signature"},"optional": null}]
The rest of the flags (annotations, claims, tlog, etc.) should all work the same.
Overview
This uses ephemeral keys and certificates, which are signed automatically by the fulcio
CA.
Signatures are stored in the rekor
transparency log, which automatically provides an attestation
as to when the signature was created.
Information on the fulcio
CA can be found in the fulcio repository.
OAuth Flows
Cosign supports two OAuth flows today: the standard flow and the device flow.
When there is no terminal attached (non-interactive mode), Cosign will automatically use the device flow where a link is printed to stdout. This link must be opened in a browser to complete the flow.
Identity Tokens
In automated environments, Cosign also supports directly using OIDC Identity Tokens from specific issuers.
These can be supplied on the command line with the --identity-token
flag.
The audiences
field must contain sigstore
.
Cosign also has support for detecting some of these automated environments and producing an identity token. Currently this supports Google Compute Engine, GitHub Actions and SPIFFE tokens.
On GCP
From a GCE VM, you can use the VM's service account identity to sign an image:
$ IDENTITY_TOKEN=$(gcloud auth print-identity-token --audiences=sigstore)
$ cosign sign --identity-token=$IDENTITY_TOKEN $IMAGE_DIGEST
From outside a GCE VM, you can impersonate a GCP IAM service account to sign an image:
$ IDENTITY_TOKEN=$(gcloud auth print-identity-token \
--audiences=sigstore \
--include-email \
--impersonate-service-account my-sa@my-project.iam.gserviceaccount.com)
$ cosign sign --identity-token=$IDENTITY_TOKEN $IMAGE_DIGEST
In order to impersonate an IAM service account, your account must have the
roles/iam.serviceAccountTokenCreator
role.
Note: On Google Cloud Build, standard identity tokens are not supported through the GCE metadata server. Cosign has a special flow for this case, where you can instruct the Cloud Build service account to impersonate another service account. To configure this flow:
- Create a service account to use for signatures (the email address will be present in the certificate subject).
- Grant the Cloud Build service account the
roles/iam.serviceAccountTokenCreator
role for this target account. - Set the
GOOGLE_SERVICE_ACCOUNT_NAME
environment variable to the name of the target account in your cloudbuild.yaml - Sign images in GCB, without keys!
Timestamps
Signature timestamps are checked in the rekor transparency log. Rekor's IntegratedTime
is signed as part of its signedEntryTimestamp
. Cosign verifies the signature over the timestamp and checks that the signature was created while the certificate was valid.
TODO: Add more documentation here
Public Staging Environment
There is a public staging environment that is running Fulcio, Rekor and OIDC issuer.
NOTE The staging environment provides no SLO guarantees nor the same protection of the root key material for TUF. This environment is meant for development and testing only, PLEASE do not use for production purposes.
The endpoints are as follows:
These instances are operated and maintained in the same manner as the public production environment for Sigstore.
Usage
To use this instance, follow the steps below:
rm -r ~/.sigstore
curl -O https://raw.githubusercontent.com/sigstore/root-signing/main/staging/repository/1.root.json
cosign initialize --mirror=https://tuf-repo-cdn.sigstore.dev --root=1.root.json
COSIGN_EXPERIMENTAL=1 cosign sign --oidc-issuer "https://oauth2.sigstage.dev/auth" --fulcio-url "https://fulcio.sigstage.dev" --rekor-url "https://rekor.sigstage.dev" ${IMAGE_DIGEST}
COSIGN_EXPERIMENTAL=1 cosign verify --rekor-url "https://rekor.sigstage.dev" ${IMAGE}
- Steps 1-4 configures your local environment to use the staging keys and certificates.
- Step 5 specify the staging environment with flags needed for signing.
- Step 6 specify the staging environment with flags needed for verifying.
Revert Back to Production
We need to clear the local TUF root data and re-initialize with the default production TUF root data.
rm -r ~/.sigstore
cosign initialize
Custom Components
For configuring Cosign to work with custom components, checkout the Configuring Cosign with Custom Components docs to find out how to achieve this.
Custom Root Cert
You can override the public good instance CA using the environment variable SIGSTORE_ROOT_FILE
, e.g.
export SIGSTORE_ROOT_FILE="/home/jdoe/myrootCA.pem"