aboutsummaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-08-02 20:09:10 +0000
committerGitHub <noreply@github.com>2022-08-02 20:09:10 +0000
commit49ae6cfed67dbc38408c85b3be52af69fa8f031d (patch)
tree3bd355609715d56a0f4126179c0876cfece3aa4d /libpod
parent87f892e5b56c2fab2f394f8cc79794ccce03f510 (diff)
parent5c95c0920f32b61021395ec2700884d136240de7 (diff)
downloadpodman-49ae6cfed67dbc38408c85b3be52af69fa8f031d.tar.gz
podman-49ae6cfed67dbc38408c85b3be52af69fa8f031d.tar.bz2
podman-49ae6cfed67dbc38408c85b3be52af69fa8f031d.zip
Merge pull request #15142 from mtrmac/sigstore-sign-4.2
[v4.2] Sigstore sign
Diffstat (limited to 'libpod')
-rw-r--r--libpod/common/common.go16
-rw-r--r--libpod/common/signing_options.go10
2 files changed, 0 insertions, 26 deletions
diff --git a/libpod/common/common.go b/libpod/common/common.go
deleted file mode 100644
index 34cabeadc..000000000
--- a/libpod/common/common.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package common
-
-// IsTrue determines whether the given string equals "true".
-func IsTrue(str string) bool {
- return str == "true"
-}
-
-// IsFalse determines whether the given string equals "false".
-func IsFalse(str string) bool {
- return str == "false"
-}
-
-// IsValidBool determines whether the given string equals "true" or "false".
-func IsValidBool(str string) bool {
- return IsTrue(str) || IsFalse(str)
-}
diff --git a/libpod/common/signing_options.go b/libpod/common/signing_options.go
deleted file mode 100644
index b7e14be82..000000000
--- a/libpod/common/signing_options.go
+++ /dev/null
@@ -1,10 +0,0 @@
-package common
-
-// SigningOptions encapsulates settings that control whether or not we strip or
-// add signatures to images when writing them.
-type SigningOptions struct {
- // RemoveSignatures directs us to remove any signatures which are already present.
- RemoveSignatures bool
- // SignBy is a key identifier of some kind, indicating that a signature should be generated using the specified private key and stored with the image.
- SignBy string
-}