golang.org/x/crypto/openpgp/packet.PublicKey.y (field)

15 uses

	golang.org/x/crypto/openpgp/packet (current package)
		public_key.go#L161: 	n, e, p, q, g, y parsedMPI
		public_key.go#L205: 		y:            fromBig(pub.Y),
		public_key.go#L220: 		y:            fromBig(pub.Y),
		public_key.go#L357: 	pk.y.bytes, pk.y.bitLength, err = readMPI(r)
		public_key.go#L366: 	dsa.Y = new(big.Int).SetBytes(pk.y.bytes)
		public_key.go#L382: 	pk.y.bytes, pk.y.bitLength, err = readMPI(r)
		public_key.go#L390: 	elgamal.Y = new(big.Int).SetBytes(pk.y.bytes)
		public_key.go#L408: 		pLength += 2 + uint16(len(pk.y.bytes))
		public_key.go#L412: 		pLength += 2 + uint16(len(pk.y.bytes))
		public_key.go#L437: 		length += 2 + len(pk.y.bytes)
		public_key.go#L441: 		length += 2 + len(pk.y.bytes)
		public_key.go#L483: 		return writeMPIs(w, pk.p, pk.q, pk.g, pk.y)
		public_key.go#L485: 		return writeMPIs(w, pk.p, pk.g, pk.y)