type golang.org/x/crypto/openpgp/packet.outputSubpacket
16 uses
golang.org/x/crypto/openpgp/packet (current package)
signature.go#L50: rawSubpackets []outputSubpacket
signature.go#L79: outSubpackets []outputSubpacket
signature.go#L250: sig.rawSubpackets = append(sig.rawSubpackets, outputSubpacket{isHashed, packetType, isCritical, subpacket})
signature.go#L432: func subpacketsLength(subpackets []outputSubpacket, hashed bool) (length int) {
signature.go#L444: func serializeSubpackets(to []byte, subpackets []outputSubpacket, hashed bool) {
signature.go#L663: type outputSubpacket struct {
signature.go#L670: func (sig *Signature) buildSubpackets() (subpackets []outputSubpacket) {
signature.go#L673: subpackets = append(subpackets, outputSubpacket{true, creationTimeSubpacket, false, creationTime})
signature.go#L678: subpackets = append(subpackets, outputSubpacket{true, issuerSubpacket, false, keyId})
signature.go#L684: subpackets = append(subpackets, outputSubpacket{true, signatureExpirationSubpacket, true, sigLifetime})
signature.go#L703: subpackets = append(subpackets, outputSubpacket{true, keyFlagsSubpacket, false, []byte{flags}})
signature.go#L711: subpackets = append(subpackets, outputSubpacket{true, keyExpirationSubpacket, true, keyLifetime})
signature.go#L715: subpackets = append(subpackets, outputSubpacket{true, primaryUserIdSubpacket, false, []byte{1}})
signature.go#L719: subpackets = append(subpackets, outputSubpacket{true, prefSymmetricAlgosSubpacket, false, sig.PreferredSymmetric})
signature.go#L723: subpackets = append(subpackets, outputSubpacket{true, prefHashAlgosSubpacket, false, sig.PreferredHash})
signature.go#L727: subpackets = append(subpackets, outputSubpacket{true, prefCompressionSubpacket, false, sig.PreferredCompression})
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |