/external/chromium_org/net/cert/ |
signed_tree_head.h | 32 char sha256_root_hash[kSthRootHashLength]; member in struct:net::ct::SignedTreeHead
|
ct_log_response_parser.cc | 28 std::string sha256_root_hash; member in struct:net::ct::__anon13700::JsonSignedTreeHead 37 DVLOG(1) << "Failed decoding sha256_root_hash"; 42 DVLOG(1) << "sha256_root_hash is expected to be 32 bytes, but is " 70 converter->RegisterCustomField("sha256_root_hash", 71 &JsonSignedTreeHead::sha256_root_hash, 92 if (sth.sha256_root_hash.empty()) { 132 memcpy(signed_tree_head->sha256_root_hash, 133 parsed_sth.sha256_root_hash.c_str(),
|
ct_log_response_parser_unittest.cc | 20 std::string CreateSignedTreeHeadJsonString(std::string sha256_root_hash, 24 if (!sha256_root_hash.empty()) { 25 sth_json += base::StringPrintf(",\"sha256_root_hash\":\"%s\"", 26 sha256_root_hash.c_str()); 60 memcpy(actual_hash, tree_head.sha256_root_hash, kSthRootHashLength);
|
ct_log_verifier_unittest.cc | 88 sth->sha256_root_hash[0] = '\x0';
|
ct_serialization.cc | 319 base::StringPiece(signed_tree_head.sha256_root_hash, kSthRootHashLength),
|
/external/chromium_org/net/test/ |
ct_test_util.cc | 262 std::string sha256_root_hash = GetSampleSTHSHA256RootHash(); local 263 memcpy(sth->sha256_root_hash, sha256_root_hash.c_str(), kSthRootHashLength);
|