File: simple.go

package info (click to toggle)
golang-github-containers-image 5.23.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,368 kB
  • sloc: sh: 165; makefile: 75
file content (27 lines) | stat: -rw-r--r-- 797 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package signature

// SimpleSigning is a “simple signing” signature.
type SimpleSigning struct {
	untrustedSignature []byte
}

// SimpleSigningFromBlob converts a “simple signing” signature into a SimpleSigning object.
func SimpleSigningFromBlob(blobChunk []byte) SimpleSigning {
	return SimpleSigning{
		untrustedSignature: copyByteSlice(blobChunk),
	}
}

func (s SimpleSigning) FormatID() FormatID {
	return SimpleSigningFormat
}

// blobChunk returns a representation of signature as a []byte, suitable for long-term storage.
// Almost everyone should use signature.Blob() instead.
func (s SimpleSigning) blobChunk() ([]byte, error) {
	return copyByteSlice(s.untrustedSignature), nil
}

func (s SimpleSigning) UntrustedSignature() []byte {
	return copyByteSlice(s.untrustedSignature)
}