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

  /external/chromium_org/net/quic/crypto/
ephemeral_key_source.h 28 // using the algorithm |key_exchange|, sets |*public_value| to the public key
30 // key. |*public_value| will be sent to the peer to be used with the peer's
37 std::string* public_value) = 0;
curve25519_key_exchange_test.cc 31 const StringPiece alice_public(alice->public_value());
32 const StringPiece bob_public(bob->public_value());
key_exchange.h 35 // public_value returns the local public key which can be sent to a peer in
39 virtual base::StringPiece public_value() const = 0;
p256_key_exchange_test.cc 32 const base::StringPiece alice_public(alice->public_value());
33 const base::StringPiece bob_public(bob->public_value());
crypto_server_test.cc 39 char public_value[32]; local
40 memset(public_value, 42, sizeof(public_value));
44 pub_hex_ = "#" + base::HexEncode(public_value, sizeof(public_value));
curve25519_key_exchange.h 37 virtual base::StringPiece public_value() const OVERRIDE;
curve25519_key_exchange.cc 79 StringPiece Curve25519KeyExchange::public_value() const { function in class:net::Curve25519KeyExchange
p256_key_exchange.h 46 virtual base::StringPiece public_value() const OVERRIDE;
crypto_server_config.cc 96 StringPiece curve25519_public_value = curve25519->public_value();
100 StringPiece p256_public_value = p256->public_value();
392 StringPiece public_value; local
393 if (!client_hello.GetStringPiece(kPUBS, &public_value)) {
400 if (!key_exchange->CalculateSharedKey(public_value,
484 key_exchange, rand, clock->ApproximateNow(), public_value,
490 forward_secure_key_exchange->public_value().as_string();
492 public_value, &params->forward_secure_premaster_secret)) {
    [all...]
crypto_handshake.cc 665 StringPiece public_value; local
666 if (scfg->GetNthValue24(kPUBS, key_exchange_index, &public_value) !=
700 public_value, &out_params->initial_premaster_secret)) {
704 out->SetStringPiece(kPUBS, out_params->client_key_exchange->public_value());
855 StringPiece public_value; local
856 if (!server_hello.GetStringPiece(kPUBS, &public_value)) {
862 public_value, &out_params->forward_secure_premaster_secret)) {
p256_key_exchange_openssl.cc 111 StringPiece P256KeyExchange::public_value() const { function in class:net::P256KeyExchange
p256_key_exchange_nss.cc 225 StringPiece P256KeyExchange::public_value() const { function in class:net::P256KeyExchange
  /external/chromium_org/crypto/third_party/nss/
pk11akey.cc 53 SECItem* public_value,
84 public_value, permanent, sensitive, CKK_EC,
chromium-nss.h 66 SECItem* public_value,

Completed in 1598 milliseconds