func crypto/elliptic.Marshal
10 uses
crypto/elliptic (current package)
elliptic.go#L315: func Marshal(curve Curve, x, y *big.Int) []byte {
crypto/tls
key_schedule.go#L164: return elliptic.Marshal(curve, p.x, p.y)
crypto/x509
sec1.go#L60: PublicKey: asn1.BitString{Bytes: elliptic.Marshal(key.Curve, key.X, key.Y)},
x509.go#L88: publicKeyBytes = elliptic.Marshal(pub.Curve, pub.X, pub.Y)
golang.org/x/crypto/openpgp/packet
public_key.go#L246: pk.ec.p.bytes = elliptic.Marshal(pub.Curve, pub.X, pub.Y)
golang.org/x/crypto/ssh
kex.go#L231: ClientPubKey: elliptic.Marshal(kex.curve, ephKey.PublicKey.X, ephKey.PublicKey.Y),
kex.go#L343: serializedEphKey := elliptic.Marshal(kex.curve, ephKey.PublicKey.X, ephKey.PublicKey.Y)
keys.go#L653: keyBytes := elliptic.Marshal(k.Curve, k.X, k.Y)
keys.go#L757: keyBytes := elliptic.Marshal(k.Curve, k.X, k.Y)
golang.org/x/crypto/ssh/agent
client.go#L565: KeyBytes: elliptic.Marshal(k.Curve, k.X, k.Y),
 |
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. |