D | messagedigest.cc | 107 size_t ComputeHmac(MessageDigest* digest, in ComputeHmac() function 144 size_t ComputeHmac(const std::string& alg, const void* key, size_t key_len, in ComputeHmac() function 151 return ComputeHmac(digest.get(), key, key_len, in ComputeHmac() 155 std::string ComputeHmac(MessageDigest* digest, const std::string& key, in ComputeHmac() function 158 ComputeHmac(digest, key.data(), key.size(), in ComputeHmac() 163 bool ComputeHmac(const std::string& alg, const std::string& key, in ComputeHmac() function 169 *output = ComputeHmac(digest.get(), key, input); in ComputeHmac() 173 std::string ComputeHmac(const std::string& alg, const std::string& key, in ComputeHmac() function 176 ComputeHmac(alg, key, input, &output); in ComputeHmac()
|