OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ComputeHmac
(Results
1 - 6
of
6
) sorted by null
/external/webrtc/webrtc/base/
messagedigest_unittest.cc
69
ComputeHmac
(DIGEST_MD5, std::string(16, '\x0b'), "Hi There"));
71
ComputeHmac
(DIGEST_MD5, "Jefe", "what do ya want for nothing?"));
73
ComputeHmac
(DIGEST_MD5, std::string(16, '\xaa'),
76
ComputeHmac
(DIGEST_MD5,
81
ComputeHmac
(DIGEST_MD5, std::string(16, '\x0c'),
84
ComputeHmac
(DIGEST_MD5, std::string(80, '\xaa'),
87
ComputeHmac
(DIGEST_MD5, std::string(80, '\xaa'),
96
ComputeHmac
(DIGEST_MD5, key.c_str(), key.size(),
101
ComputeHmac
(DIGEST_MD5, key.c_str(), key.size(),
109
ComputeHmac
(DIGEST_SHA_1, std::string(20, '\x0b'), "Hi There"))
[
all
...]
messagedigest.h
85
size_t
ComputeHmac
(MessageDigest* digest, const void* key, size_t key_len,
91
size_t
ComputeHmac
(const std::string& alg, const void* key, size_t key_len,
96
std::string
ComputeHmac
(MessageDigest* digest, const std::string& key,
101
std::string
ComputeHmac
(const std::string& alg, const std::string& key,
104
bool
ComputeHmac
(const std::string& alg, const std::string& key,
messagedigest.cc
108
size_t
ComputeHmac
(MessageDigest* digest,
146
size_t
ComputeHmac
(const std::string& alg, const void* key, size_t key_len,
153
return
ComputeHmac
(digest.get(), key, key_len,
157
std::string
ComputeHmac
(MessageDigest* digest, const std::string& key,
160
ComputeHmac
(digest, key.data(), key.size(),
165
bool
ComputeHmac
(const std::string& alg, const std::string& key,
171
*output =
ComputeHmac
(digest.get(), key, input);
175
std::string
ComputeHmac
(const std::string& alg, const std::string& key,
178
ComputeHmac
(alg, key, input, &output);
/system/keymaster/
integrity_assured_key_blob.cpp
52
static keymaster_error_t
ComputeHmac
(const uint8_t* serialized_data, size_t serialized_data_size,
100
return
ComputeHmac
(key_blob->key_material, p - key_blob->key_material, hidden, p);
115
keymaster_error_t error =
ComputeHmac
(key_blob.begin(), key_blob.key_material_size - HMAC_SIZE,
/external/webrtc/webrtc/p2p/base/
stun.cc
194
size_t ret = rtc::
ComputeHmac
(rtc::DIGEST_SHA_1,
229
size_t ret = rtc::
ComputeHmac
(rtc::DIGEST_SHA_1,
turnserver.cc
400
nonce += rtc::
ComputeHmac
(rtc::DIGEST_MD5, nonce_key_, input);
421
if (nonce.substr(sizeof(then) * 2) != rtc::
ComputeHmac
(
Completed in 723 milliseconds