crypto/internal/fips140/rsa.PublicKey.N (field)

22 uses

	crypto/internal/fips140/rsa (current package)
		cast.go#L171: 			N: N, E: 65537,
		pkcs1v22.go#L254: 	saltLength := (pub.N.BitLen()-1+7)/8 - 2 - hash.Size()
		pkcs1v22.go#L291: 	emBits := priv.pub.N.BitLen() - 1
		pkcs1v22.go#L340: 	emBits := pub.N.BitLen() - 1
		rsa.go#L15: 	N *bigmod.Modulus
		rsa.go#L22: 	return (pub.N.BitLen() + 7) / 8
		rsa.go#L99: 			N: n, E: e,
		rsa.go#L136: 			N: n, E: e,
		rsa.go#L161: 			N: n, E: e,
		rsa.go#L176: 	N = priv.pub.N.Nat().Bytes(priv.pub.N)
		rsa.go#L178: 	d = priv.d.Bytes(priv.pub.N)
		rsa.go#L207: 	N := priv.pub.N
		rsa.go#L338: 	if pub.N == nil {
		rsa.go#L341: 	if pub.N.Nat().IsOdd() == 0 {
		rsa.go#L347: 	if pub.N.BitLen() < 2048 {
		rsa.go#L350: 	if pub.N.BitLen()%2 == 1 {
		rsa.go#L386: 	m, err := bigmod.NewNat().SetBytes(plaintext, pub.N)
		rsa.go#L390: 	return bigmod.NewNat().ExpShortVarTime(m, uint(pub.E), pub.N).Bytes(pub.N), nil
		rsa.go#L422: 	N, E := priv.pub.N, priv.pub.E

	crypto/rsa
		rsa.go#L629: 	return &rsa.PublicKey{N: N, E: pub.E}, nil