Searched refs:hash_base64 (Results 1 – 4 of 4) sorted by relevance
18 std::string hash_base64; in MakeHostPinHash() local19 base::Base64Encode(hash, &hash_base64); in MakeHostPinHash()20 return "hmac:" + hash_base64; in MakeHostPinHash()
208 std::string hash_base64; in VerifySignature() local209 if (!HashWithMachineId(signature.salt, &hash_base64)) in VerifySignature()211 signed_data.append(hash_base64); in VerifySignature()321 std::string hash_base64; in GetSignature() local322 if (!HashWithMachineId(salt_, &hash_base64)) { in GetSignature()348 dictionary.SetString(kHashKey, hash_base64); in GetSignature()
210 String hash_base64 = entry.substring(delim_idx + 1); in checkHashed() local218 hash = Base64.decode(hash_base64.toCharArray()); in checkHashed()
63 std::string hash_base64 = host_secret_hash.substr(separator + 1);65 // Convert |hash_base64| to |hash|, based on code from base/base64.cc.66 int hash_base64_size = static_cast<int>(hash_base64.size());71 int hash_size = modp_b64_decode(&(hash[0]), hash_base64.data(),