Files
attest/pkg/attest/types.go
2024-04-30 09:34:36 -05:00

16 lines
277 B
Go

package attest
import (
"github.com/docker/attest/pkg/attestation"
)
const (
InTotoReferenceLifecycleStage = "vnd.docker.lifecycle-stage"
LifecycleStageExperimental = "experimental"
)
type SigningOptions struct {
Replace bool
VSAOptions *attestation.VSAOptions
}