Home
last modified time | relevance | path

Searched defs:PublicKeyECDH (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/internal/boring/
Decdh.go17 type PublicKeyECDH struct { struct
18 curve string
19 key *C.GO_EC_POINT
20 group *C.GO_EC_GROUP
21 bytes []byte
24 func (k *PublicKeyECDH) finalize() {
71 func (k *PublicKeyECDH) Bytes() []byte { return k.bytes }
136 func ECDH(priv *PrivateKeyECDH, pub *PublicKeyECDH) ([]byte, error) {
Dnotboring.go114 type PublicKeyECDH struct{} struct
117 func ECDH(*PrivateKeyECDH, *PublicKeyECDH) ([]byte, error) { panic("boringcrypto: not availabl…
121 …(*PublicKeyECDH) Bytes() []byte { panic("boringcrypto: not available") }