crypto/rsa.PublicKey.E (field)

24 uses

	crypto/rsa (current package)
		fips.go#L431: 	if pub.E <= 1<<16 {
		fips.go#L434: 	if pub.E&1 == 0 {
		rsa.go#L70: 	E int      // public exponent
		rsa.go#L88: 	return bigIntEqual(pub.N, xx.N) && pub.E == xx.E
		rsa.go#L257: 	if !bigIntEqualToBytes(priv.N, N) || priv.E != e || !bigIntEqualToBytes(priv.D, d) {
		rsa.go#L339: 				E: int(e64),
		rsa.go#L388: 			E: e,
		rsa.go#L440: 	priv.E = 65537
		rsa.go#L514: 		e := big.NewInt(int64(priv.E))
		rsa.go#L583: 		k, err := rsa.NewPrivateKeyWithPrecomputation(priv.N.Bytes(), priv.E, priv.D.Bytes(),
		rsa.go#L595: 	k, err := rsa.NewPrivateKey(priv.N.Bytes(), priv.E, priv.D.Bytes(),
		rsa.go#L613: 	k, err := rsa.NewPrivateKeyWithoutCRT(priv.N.Bytes(), priv.E, priv.D.Bytes())
		rsa.go#L670: 	return &rsa.PublicKey{N: N, E: pub.E}, nil

	crypto/x509
		parser.go#L281: 			E: p.E,
		pkcs1.go#L83: 		E: priv.E,
		pkcs1.go#L144: 		E:       key.PublicKey.E,
		pkcs1.go#L188: 		E: pub.E,
		pkcs1.go#L199: 		E: key.E,
		x509.go#L90: 			E: pub.E,

	github.com/gotd/td/crypto
		rsa.go#L34: 	e := big.NewInt(int64(pub.E))
		rsa.go#L42: 	e := big.NewInt(int64(key.E))
		rsa_fingerprint.go#L14: 	e := big.NewInt(int64(key.E))

	github.com/gotd/td/telegram/dcs
		dns.go#L44: 		dnsKey.eBig = big.NewInt(int64(dnsKey.E))