HomeSort by relevance Sort by last modified time
    Searched full:peer_public_key (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/crypto/
curve25519.h 28 // |peer_public_key|. This method is a wrapper for |curve25519_donna()|. It
29 // calls that function with |private_key| as |secret| and |peer_public_key| as
31 // |peer_public_key| should be of length |kBytes|.
34 const uint8* peer_public_key,
curve25519.cc 20 const uint8* peer_public_key,
22 curve25519_donna(shared_key, private_key, peer_public_key);
  /external/chromium_org/net/quic/crypto/
p256_key_exchange_nss.cc 169 SECKEYPublicKey peer_public_key; local
170 memset(&peer_public_key, 0, sizeof(peer_public_key));
172 peer_public_key.keyType = ecKey;
174 peer_public_key.u.ec.DEREncodedParams.len =
176 peer_public_key.u.ec.DEREncodedParams.data =
179 peer_public_key.u.ec.publicValue.type = siBuffer;
180 peer_public_key.u.ec.publicValue.data =
182 peer_public_key.u.ec.publicValue.len = peer_public_value.size();
193 &peer_public_key,
    [all...]

Completed in 68 milliseconds