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

  /external/chromium_org/components/os_crypt/
ie7_password_win.cc 97 std::string hash_bin = base::SHA1HashString(url_buffer); local
103 for (size_t i = 0; i < hash_bin.size(); ++i) {
106 unsigned char hash_byte = static_cast<unsigned char>(hash_bin[i]);
  /external/chromium_org/components/autofill/core/browser/
form_structure.cc 946 std::string hash_bin = base::SHA1HashString(str); local
    [all...]
autofill_field.cc 384 std::string hash_bin = base::SHA1HashString(str); local
385 DCHECK_EQ(20U, hash_bin.length());
387 uint32 hash32 = ((hash_bin[0] & 0xFF) << 24) |
388 ((hash_bin[1] & 0xFF) << 16) |
389 ((hash_bin[2] & 0xFF) << 8) |
390 (hash_bin[3] & 0xFF);

Completed in 141 milliseconds