crypto/ecdsa.PrivateKey.D (field)
16 uses
crypto/ecdsa (current package)
ecdsa.go#L89: D *big.Int
ecdsa.go#L105: return priv.PublicKey.Equal(&xx.PublicKey) && priv.D.Cmp(xx.D) == 0
ecdsa.go#L157: priv.D = k
ecdsa.go#L216: md.Write(priv.D.Bytes()) // the private key,
ecdsa.go#L268: s = new(big.Int).Mul(priv.D, r)
crypto/x509
sec1.go#L58: PrivateKey: key.D.FillBytes(privateKey),
sec1.go#L100: priv.D = k
golang.org/x/crypto/openpgp/packet
private_key.go#L236: return writeBig(w, priv.D)
private_key.go#L379: D: new(big.Int).SetBytes(d),
golang.org/x/crypto/ssh
kex.go#L255: secret, _ := kex.curve.ScalarMult(x, y, ephKey.D.Bytes())
kex.go#L346: secret, _ := kex.curve.ScalarMult(clientX, clientY, ephKey.D.Bytes())
keys.go#L1438: D: key.D,
golang.org/x/crypto/ssh/agent
client.go#L566: D: k.D,
client.go#L694: D: k.D,
server.go#L305: D: privScalar,
 |
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. |