func crypto/internal/bigmod.NewModulusFromBig
10 uses
crypto/internal/bigmod (current package)
nat.go#L376: func NewModulusFromBig(n *big.Int) (*Modulus, error) {
crypto/ecdsa
ecdsa.go#L672: c.N, err = bigmod.NewModulusFromBig(params.N)
crypto/rsa
rsa.go#L319: mn, err := bigmod.NewModulusFromBig(N)
rsa.go#L323: mp, err := bigmod.NewModulusFromBig(P)
rsa.go#L327: mq, err := bigmod.NewModulusFromBig(Q)
rsa.go#L484: N, err := bigmod.NewModulusFromBig(pub.N)
rsa.go#L587: priv.Precomputed.n, err = bigmod.NewModulusFromBig(priv.N)
rsa.go#L591: priv.Precomputed.p, err = bigmod.NewModulusFromBig(priv.Primes[0])
rsa.go#L597: priv.Precomputed.q, err = bigmod.NewModulusFromBig(priv.Primes[1])
rsa.go#L652: N, err = bigmod.NewModulusFromBig(priv.N)
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |