const github.com/gotd/td/internal/crypto.RSAKeyBits

6 uses

	github.com/gotd/td/internal/crypto (current package)
		check_dh.go#L31: 	if p.BitLen() != RSAKeyBits {
		dh.go#L32: 	safetyRangeMin := big.NewInt(0).Exp(big.NewInt(2), big.NewInt(RSAKeyBits-64), nil)
		rsa.go#L15: const RSAKeyBits = 2048

	github.com/gotd/td/internal/exchange
		client_flow.go#L178: 		randMax := big.NewInt(0).SetBit(big.NewInt(0), crypto.RSAKeyBits, 1)
		generator.go#L54: 	safetyRangeMin := big.NewInt(0).Exp(big.NewInt(2), big.NewInt(crypto.RSAKeyBits-64), nil)
		generator.go#L57: 	randMax := big.NewInt(0).SetBit(big.NewInt(0), crypto.RSAKeyBits, 1)