github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/libpod/common/signing_options.go (about) 1 package common 2 3 // SigningOptions encapsulates settings that control whether or not we strip or 4 // add signatures to images when writing them. 5 type SigningOptions struct { 6 // RemoveSignatures directs us to remove any signatures which are already present. 7 RemoveSignatures bool 8 // 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. 9 SignBy string 10 }