github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/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 }