var crypto/elliptic.p256
15 uses
crypto/elliptic (current package)
elliptic.go#L434: return p256
p256_asm.go#L33: p256 p256Curve
p256_asm.go#L40: p256.CurveParams = &CurveParams{Name: "P-256"}
p256_asm.go#L41: p256.P, _ = new(big.Int).SetString("115792089210356248762697446949407573530086143415290314195533631308867097853951", 10)
p256_asm.go#L42: p256.N, _ = new(big.Int).SetString("115792089210356248762697446949407573529996955224135760342422259061068512044369", 10)
p256_asm.go#L43: p256.B, _ = new(big.Int).SetString("5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b", 16)
p256_asm.go#L44: p256.Gx, _ = new(big.Int).SetString("6b17d1f2e12c4247f8bce6e563a440f277037d812deb33a0f4a13945d898c296", 16)
p256_asm.go#L45: p256.Gy, _ = new(big.Int).SetString("4fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5", 16)
p256_asm.go#L46: p256.BitSize = 256
p256_asm.go#L119: if k.Cmp(p256.N) >= 0 {
p256_asm.go#L121: k = new(big.Int).Mod(k, p256.N)
p256_asm.go#L217: if n.Cmp(p256.N) >= 0 {
p256_asm.go#L218: n.Mod(n, p256.N)
p256_asm.go#L229: if in.Cmp(p256.P) < 0 {
p256_asm.go#L232: return new(big.Int).Mod(in, p256.P)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |