type crypto/internal/boring.PrivateKeyECDH

7 uses

	crypto/internal/boring (current package)
		notboring.go#L115: type PrivateKeyECDH struct{}
		notboring.go#L117: func ECDH(*PrivateKeyECDH, *PublicKeyECDH) ([]byte, error)      { panic("boringcrypto: not available") }
		notboring.go#L118: func GenerateKeyECDH(string) (*PrivateKeyECDH, []byte, error)   { panic("boringcrypto: not available") }
		notboring.go#L119: func NewPrivateKeyECDH(string, []byte) (*PrivateKeyECDH, error) { panic("boringcrypto: not available") }
		notboring.go#L122: func (*PrivateKeyECDH) PublicKey() (*PublicKeyECDH, error)      { panic("boringcrypto: not available") }

	crypto/ecdh
		ecdh.go#L110: 	boring     *boring.PrivateKeyECDH
		nist.go#L96: func newBoringPrivateKey(c Curve, bk *boring.PrivateKeyECDH, privateKey []byte) (*PrivateKey, error) {