Searched defs:HMAC (Results 1 - 6 of 6) sorted by relevance

/external/chromium/base/
H A Dhmac_mac.cc17 HMAC::HMAC(HashAlgorithm hash_alg) function in class:base::HMAC
23 bool HMAC::Init(const unsigned char *key, int key_length) {
25 // Init must not be called more than once on the same HMAC object.
35 HMAC::~HMAC() {
42 bool HMAC::Sign(const std::string& data,
H A Dhmac.h5 // Utility class for calculating the HMAC for a given message. We currently
21 class HMAC { class in namespace:base
28 explicit HMAC(HashAlgorithm hash_alg);
29 ~HMAC();
42 // Calculates the HMAC for the message in |data| using the algorithm supplied
43 // to the constructor and the key supplied to the Init method. The HMAC is
51 DISALLOW_COPY_AND_ASSIGN(HMAC);
H A Dhmac_nss.cc45 HMAC::HMAC(HashAlgorithm hash_alg) function in class:base::HMAC
51 bool HMAC::Init(const unsigned char *key, int key_length) {
60 // Init must not be called more than twice on the same HMAC object.
90 HMAC::~HMAC() {
93 bool HMAC::Sign(const std::string& data,
H A Dhmac_win.cc24 HMAC::HMAC(HashAlgorithm hash_alg) function in class:base::HMAC
30 bool HMAC::Init(const unsigned char *key, int key_length) {
32 // Init must not be called more than once on the same HMAC object.
81 HMAC::~HMAC() {
97 bool HMAC::Sign(const std::string& data,
/external/openssl/crypto/hmac/
H A Dhmac.c191 unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len, function
/external/dropbear/libtomcrypt/
H A Dcrypt.tex2076 \mysection{HMAC Protocol}
2077 Thanks to Dobes Vandermeer, the library now includes support for hash based message authentication codes, or HMAC for short. An HMAC
2079 to allow an owner of a private symmetric key to produce an HMAC on a message then later verify if it is correct. Any impostor or
2082 The HMAC support works much like the normal hash functions except that the initialization routine requires you to pass a key
2092 The \textit{hmac} parameter is the state for the HMAC code. The \textit{hash} parameter is the index into the descriptor table of the hash you want
2094 length (in octets) of the key you want to use to authenticate the message. To send octets of a message through the HMAC system you must use the following function:
2101 \textit{hmac} is the HMAC state you are working with. \textit{buf} is the array of octets to send into the HMAC process. \textit{len} is the
2103 are finished with the HMAC proces
[all...]

Completed in 557 milliseconds