OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hash_in
(Results
1 - 7
of
7
) sorted by null
/external/chromium/chrome/browser/safe_browsing/
safe_browsing_util_unittest.cc
340
const std::string
hash_in
= "12345678902234567890323456789012";
local
342
safe_browsing_util::StringToSBFullHash(
hash_in
, &hash_out);
344
EXPECT_EQ(0, memcmp(
hash_in
.data(), hash_out.full_hash, sizeof(SBFullHash)));
347
EXPECT_EQ(
hash_in
, hash_final);
safe_browsing_util.cc
522
void StringToSBFullHash(const std::string&
hash_in
, SBFullHash* hash_out) {
523
DCHECK_EQ(static_cast<size_t>(crypto::SHA256_LENGTH),
hash_in
.size());
524
memcpy(hash_out->full_hash,
hash_in
.data(), crypto::SHA256_LENGTH);
safe_browsing_util.h
322
void StringToSBFullHash(const std::string&
hash_in
, SBFullHash* hash_out);
/external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_util_unittest.cc
340
const std::string
hash_in
= "12345678902234567890323456789012";
local
341
SBFullHash hash_out = safe_browsing_util::StringToSBFullHash(
hash_in
);
343
EXPECT_EQ(0, memcmp(
hash_in
.data(), hash_out.full_hash, sizeof(SBFullHash)));
346
EXPECT_EQ(
hash_in
, hash_final);
safe_browsing_util.cc
543
SBFullHash StringToSBFullHash(const std::string&
hash_in
) {
544
DCHECK_EQ(crypto::kSHA256Length,
hash_in
.size());
546
memcpy(hash_out.full_hash,
hash_in
.data(), crypto::kSHA256Length);
safe_browsing_util.h
370
SBFullHash StringToSBFullHash(const std::string&
hash_in
);
/external/ipsec-tools/src/racoon/
gssapi.c
522
gss_buffer_t
hash_in
= &hash_in_buf, hash_out = &hash_out_buf;
local
538
if (gssapi_vm2gssbuf(iph1->hash,
hash_in
) < 0) {
544
hash_in
, NULL, hash_out);
547
maj_stat = gss_release_buffer(&min_stat,
hash_in
);
550
"release
hash_in
buffer\n");
555
hash_in
->length, hash_out->length);
557
maj_stat = gss_release_buffer(&min_stat,
hash_in
);
559
gssapi_error(min_stat, LOCATION, "release
hash_in
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 185 milliseconds