crypto/internal/fips140/rsa.PublicKey.N (field)
22 uses
crypto/internal/fips140/rsa (current package)
cast.go#L171: N: N, E: 65537,
pkcs1v22.go#L255: saltLength := (pub.N.BitLen()-1+7)/8 - 2 - hash.Size()
pkcs1v22.go#L292: emBits := priv.pub.N.BitLen() - 1
pkcs1v22.go#L341: 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#L318: if pub.N == nil {
rsa.go#L321: if pub.N.Nat().IsOdd() == 0 {
rsa.go#L327: if pub.N.BitLen() < 2048 {
rsa.go#L330: if pub.N.BitLen()%2 == 1 {
rsa.go#L366: m, err := bigmod.NewNat().SetBytes(plaintext, pub.N)
rsa.go#L370: return bigmod.NewNat().ExpShortVarTime(m, uint(pub.E), pub.N).Bytes(pub.N), nil
rsa.go#L402: N, E := priv.pub.N, priv.pub.E
crypto/rsa
rsa.go#L629: return &rsa.PublicKey{N: N, E: pub.E}, nil