crypto/rsa.PublicKey.E (field)

30 uses

	crypto/rsa (current package)
		rsa.go#L44: 	E int      // public exponent
		rsa.go#L62: 	return pub.N.Cmp(xx.N) == 0 && pub.E == xx.E
		rsa.go#L90: 	if pub.E < 2 {
		rsa.go#L93: 	if pub.E > 1<<31-1 {
		rsa.go#L227: 	de := new(big.Int).SetInt64(int64(priv.E))
		rsa.go#L260: 	priv.E = 65537
		rsa.go#L334: 		e := big.NewInt(int64(priv.E))
		rsa.go#L388: 	e := big.NewInt(int64(pub.E))
		rsa.go#L523: 		bigE := big.NewInt(int64(priv.E))

	crypto/x509
		pkcs1.go#L73: 		E: priv.E,
		pkcs1.go#L115: 		E:       key.PublicKey.E,
		pkcs1.go#L159: 		E: pub.E,
		pkcs1.go#L170: 		E: key.E,
		x509.go#L78: 			E: pub.E,
		x509.go#L944: 			E: p.E,

	golang.org/x/crypto/openpgp/packet
		public_key.go#L189: 		e:            fromBig(big.NewInt(int64(pub.E))),
		public_key.go#L332: 		E: 0,
		public_key.go#L335: 		rsa.E <<= 8
		public_key.go#L336: 		rsa.E |= int(pk.e.bytes[i])
		public_key_v3.go#L46: 		e:            fromBig(big.NewInt(int64(pub.E))),
		public_key_v3.go#L109: 		rsa.E <<= 8
		public_key_v3.go#L110: 		rsa.E |= int(pk.e.bytes[i])

	golang.org/x/crypto/ssh
		keys.go#L362: 	key.E = int(e)
		keys.go#L368: 	e := new(big.Int).SetInt64(int64(r.E))
		keys.go#L1353: 				E: int(key.E.Int64()),

	golang.org/x/crypto/ssh/agent
		client.go#L541: 			E:           big.NewInt(int64(k.E)),
		server.go#L250: 			E: int(k.E.Int64()),
		server.go#L399: 			E: int(rsaPub.E.Int64()),

	google.golang.org/api/idtoken
		validate.go#L177: 		E: int(new(big.Int).SetBytes(de).Int64()),