github.com/containers/libpod@v1.9.4-0.20220419124438-4284fd425507/libpod/image/signing_options.go (about)

     1  package image
     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  }