HomeSort by relevance Sort by last modified time
    Searched refs:server_hash (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/crypto/
p224_spake.cc 200 uint8 client_hash[kSHA256Length], server_hash[kSHA256Length]; local
204 server_hash);
206 const uint8* my_hash = is_server_ ? server_hash : client_hash;
207 const uint8* their_hash = is_server_ ? client_hash : server_hash;
  /external/chromium_org/net/base/
sdch_manager.cc 385 std::string server_hash; local
386 GenerateHash(dictionary_text, &client_hash, &server_hash);
387 if (dictionaries_.find(server_hash) != dictionaries_.end()) {
474 << " and server hash " << server_hash; local
478 dictionaries_[server_hash] = dictionary;
483 const std::string& server_hash,
488 DictionaryMap::iterator it = dictionaries_.find(server_hash);
525 std::string* client_hash, std::string* server_hash) {
532 UrlSafeBase64Encode(second_48_bits, server_hash);
534 DCHECK_EQ(server_hash->length(), 8u)
    [all...]
sdch_manager_unittest.cc 197 std::string server_hash; local
198 sdch_manager()->GenerateHash(dictionary_text, &client_hash, &server_hash);
199 sdch_manager()->GetVcdiffDictionary(server_hash, target_url, &dictionary);
220 std::string server_hash; local
221 sdch_manager()->GenerateHash(dictionary_text, &client_hash, &server_hash);
222 sdch_manager()->GetVcdiffDictionary(server_hash, target_url, &dictionary);
450 std::string server_hash; local
452 SdchManager::GenerateHash(dictionary_text, &tmp_hash, &server_hash);
458 server_hash,
470 server_hash,
    [all...]
sdch_manager.h 311 // after the meta-data headers like Domain:...) with the given |server_hash|
316 void GetVcdiffDictionary(const std::string& server_hash,
329 std::string* client_hash, std::string* server_hash);
  /external/chromium_org/net/filter/
sdch_filter_unittest.cc 81 std::string server_hash; local
82 SdchManager::GenerateHash(dictionary, &client_hash, &server_hash);
85 std::string compressed(server_hash);
95 std::string client_hash, server_hash; local
97 SdchManager::GenerateHash(dictionary, &client_hash, &server_hash);
100 EXPECT_EQ(server_hash, "MyciMVll");
    [all...]

Completed in 104 milliseconds