8e5b17cf13
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
14 lines
669 B
Go
14 lines
669 B
Go
package signature
|
|
|
|
import "github.com/opencontainers/go-digest"
|
|
|
|
const (
|
|
// TestImageManifestDigest is the Docker manifest digest of "image.manifest.json"
|
|
TestImageManifestDigest = digest.Digest("sha256:20bf21ed457b390829cdbeec8795a7bea1626991fda603e0d01b4e7f60427e55")
|
|
// TestImageSignatureReference is the Docker image reference signed in "image.signature"
|
|
TestImageSignatureReference = "testing/manifest"
|
|
// TestKeyFingerprint is the fingerprint of the private key in this directory.
|
|
TestKeyFingerprint = "1D8230F6CDB6A06716E414C1DB72F2188BB46CC8"
|
|
// TestKeyShortID is the short ID of the private key in this directory.
|
|
TestKeyShortID = "DB72F2188BB46CC8"
|
|
)
|