Home
last modified time | relevance | path

Searched refs:pubKeyB (Results 1 – 2 of 2) sorted by relevance

/system/keymaster/cppcose/
Dcppcose.cpp625 const bytevec& pubKeyB, bool senderIsA) { in consructKdfContext() argument
626 if (privKeyA.empty() || pubKeyA.empty() || pubKeyB.empty()) { in consructKdfContext()
635 .add(senderIsA ? pubKeyA : pubKeyB)) in consructKdfContext()
639 .add(senderIsA ? pubKeyB : pubKeyA)) in consructKdfContext()
648 const bytevec& pubKeyB, bool senderIsA) { in ECDH_HKDF_DeriveKey() argument
649 if (privKeyA.empty() || pubKeyA.empty() || pubKeyB.empty()) { in ECDH_HKDF_DeriveKey()
656 publicKey.insert(publicKey.end(), pubKeyB.begin(), pubKeyB.end()); in ECDH_HKDF_DeriveKey()
660 auto kdfContext = consructKdfContext(pubKeyA, privKeyA, pubKeyB, senderIsA); in ECDH_HKDF_DeriveKey()
677 const bytevec& pubKeyB, bool senderIsA) { in x25519_HKDF_DeriveKey() argument
678 if (privKeyA.empty() || pubKeyA.empty() || pubKeyB.empty()) { in x25519_HKDF_DeriveKey()
[all …]
/system/keymaster/include/keymaster/cppcose/
Dcppcose.h334 const bytevec& pubKeyB, bool senderIsA);