Home
last modified time | relevance | path

Searched defs:PrivateKeyECDH (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/internal/boring/
Decdh.go28 type PrivateKeyECDH struct { struct
29 curve string
30 key *C.GO_EC_KEY
33 func (k *PrivateKeyECDH) finalize() {
97 func (k *PrivateKeyECDH) PublicKey() (*PublicKeyECDH, error) {
136 func ECDH(priv *PrivateKeyECDH, pub *PublicKeyECDH) ([]byte, error) {
Dnotboring.go115 type PrivateKeyECDH struct{} struct
117 func ECDH(*PrivateKeyECDH, *PublicKeyECDH) ([]byte, error) { panic("boringcrypto: not availabl…
122 …(*PrivateKeyECDH) PublicKey() (*PublicKeyECDH, error) { panic("boringcrypto: not available") }
/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/ecdh/
Dnist.go96 func newBoringPrivateKey(c Curve, bk *boring.PrivateKeyECDH, privateKey []byte) (*PrivateKey, error…