func crypto/elliptic.Unmarshal
9 uses
crypto/elliptic (current package)
elliptic.go#L340: func Unmarshal(curve Curve, data []byte) (x, y *big.Int) {
crypto/tls
key_schedule.go#L170: x, y := elliptic.Unmarshal(curve, peerPublicKey)
crypto/x509
x509.go#L992: x, y := elliptic.Unmarshal(namedCurve, asn1Data)
golang.org/x/crypto/openpgp/packet
public_key.go#L94: x, y := elliptic.Unmarshal(c, f.p.bytes)
golang.org/x/crypto/ssh
kex.go#L277: x, y = elliptic.Unmarshal(curve, pubkey)
keys.go#L644: key.X, key.Y = elliptic.Unmarshal(key.Curve, w.KeyBytes)
keys.go#L747: key.X, key.Y = elliptic.Unmarshal(key.Curve, w.KeyBytes)
keys.go#L1418: X, Y := elliptic.Unmarshal(curve, key.Pub)
golang.org/x/crypto/ssh/agent
server.go#L319: priv.X, priv.Y = elliptic.Unmarshal(priv.Curve, keyBytes)
 |
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. |