crypto/ecdsa.PublicKey.Y (field)
11 uses
crypto/ecdsa (current package)
ecdsa.go#L54: X, Y *big.Int
ecdsa.go#L85: return bigIntEqual(pub.X, xx.X) && bigIntEqual(pub.Y, xx.Y) &&
ecdsa.go#L342: return &PrivateKey{PublicKey: PublicKey{Curve: c, X: bbig.Dec(x), Y: bbig.Dec(y)}, D: bbig.Dec(d)}, nil
ecdsa.go#L553: return &PublicKey{Curve: curve, X: x, Y: y}, nil
ecdsa.go#L565: Q, err := pointFromAffine(pub.Curve, pub.X, pub.Y)
ecdsa.go#L575: Q, err := pointFromAffine(priv.Curve, priv.X, priv.Y)
ecdsa_legacy.go#L35: priv.PublicKey.X, priv.PublicKey.Y = c.ScalarBaseMult(k.Bytes())
ecdsa_legacy.go#L191: x2, y2 := c.ScalarMult(pub.X, pub.Y, u2.Bytes())
github.com/refraction-networking/utls
tls.go#L335: if pub.X.Cmp(priv.X) != 0 || pub.Y.Cmp(priv.Y) != 0 {
 |
The pages are generated with Golds v0.8.4. (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. |