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

  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_util_unittest.cc 341 SBFullHash hash_out; local
342 safe_browsing_util::StringToSBFullHash(hash_in, &hash_out);
343 EXPECT_EQ(0x34333231, hash_out.prefix);
344 EXPECT_EQ(0, memcmp(hash_in.data(), hash_out.full_hash, sizeof(SBFullHash)));
346 std::string hash_final = safe_browsing_util::SBFullHashToString(hash_out);
safe_browsing_util.h 322 void StringToSBFullHash(const std::string& hash_in, SBFullHash* hash_out);
323 std::string SBFullHashToString(const SBFullHash& hash_out);
safe_browsing_util.cc 522 void StringToSBFullHash(const std::string& hash_in, SBFullHash* hash_out) {
524 memcpy(hash_out->full_hash, hash_in.data(), crypto::SHA256_LENGTH);
  /external/ipsec-tools/src/racoon/
gssapi.c 522 gss_buffer_t hash_in = &hash_in_buf, hash_out = &hash_out_buf; local
544 hash_in, NULL, hash_out);
555 hash_in->length, hash_out->length);
561 if (gssapi_gss2vmbuf(hash_out, &outbuf) < 0) {
563 maj_stat = gss_release_buffer(&min_stat, hash_out);
566 "release hash_out buffer\n");
569 maj_stat = gss_release_buffer(&min_stat, hash_out);
571 gssapi_error(min_stat, LOCATION, "release hash_out buffer\n");
582 gss_buffer_t hash_in = &hashbuf, hash_out = &hash_outbuf; local
599 maj_stat = gss_unwrap(&min_stat, gps->gss_context, hash_in, hash_out,
    [all...]

Completed in 48 milliseconds