16 lines
277 B
Go
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
|
|
}
|