math/big.Int.Exp (method)
13 uses
math/big (current package)
int.go#L560: func (z *Int) Exp(x, y, m *Int) *Int {
int.go#L996: z.Exp(x, e, p) // z = x^e mod p
int.go#L1013: alpha := new(Int).Exp(tx, e, p)
int.go#L1049: y.Exp(x, &y, p) // y = x^((s+1)/2)
int.go#L1050: b.Exp(x, &s, p) // b = x^s
int.go#L1051: g.Exp(&n, &s, p) // g = n^s
int.go#L1066: t.SetInt64(0).SetBit(&t, int(r-m-1), 1).Exp(&g, &t, p)
crypto/dsa
dsa.go#L146: g.Exp(h, e, p)
dsa.go#L180: priv.Y.Exp(priv.G, x, priv.P)
dsa.go#L191: return new(big.Int).Exp(k, pMinus2, P)
dsa.go#L238: r = new(big.Int).Exp(priv.G, k, priv.P)
dsa.go#L302: v := u1.Exp(pub.G, u1, pub.P)
dsa.go#L303: u2.Exp(pub.Y, u2, pub.P)
 |
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. |