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

10 uses

	golang.org/x/crypto/openpgp/packet (current package)
		public_key.go#L161: 	n, e, p, q, g, y parsedMPI
		public_key.go#L189: 		e:            fromBig(big.NewInt(int64(pub.E))),
		public_key.go#L321: 	pk.e.bytes, pk.e.bitLength, err = readMPI(r)
		public_key.go#L326: 	if len(pk.e.bytes) > 3 {
		public_key.go#L334: 	for i := 0; i < len(pk.e.bytes); i++ {
		public_key.go#L336: 		rsa.E |= int(pk.e.bytes[i])
		public_key.go#L403: 		pLength += 2 + uint16(len(pk.e.bytes))
		public_key.go#L432: 		length += 2 + len(pk.e.bytes)
		public_key.go#L481: 		return writeMPIs(w, pk.n, pk.e)