Home
last modified time | relevance | path

Searched refs:HMAC (Results 1 – 19 of 19) sorted by relevance

/external/chromium/base/
Dhmac_mac.cc17 HMAC::HMAC(HashAlgorithm hash_alg) in HMAC() function in base::HMAC
23 bool HMAC::Init(const unsigned char *key, int key_length) { in Init()
35 HMAC::~HMAC() { in ~HMAC()
42 bool HMAC::Sign(const std::string& data, in Sign()
Dhmac_unittest.cc54 base::HMAC hmac(base::HMAC::SHA1); in TEST()
123 base::HMAC hmac(base::HMAC::SHA1); in TEST()
156 base::HMAC hmac(base::HMAC::SHA1); in TEST()
Dhmac_nss.cc45 HMAC::HMAC(HashAlgorithm hash_alg) in HMAC() function in base::HMAC
51 bool HMAC::Init(const unsigned char *key, int key_length) { in Init()
90 HMAC::~HMAC() { in ~HMAC()
93 bool HMAC::Sign(const std::string& data, in Sign()
Dhmac_win.cc24 HMAC::HMAC(HashAlgorithm hash_alg) in HMAC() function in base::HMAC
30 bool HMAC::Init(const unsigned char *key, int key_length) { in Init()
81 HMAC::~HMAC() { in ~HMAC()
97 bool HMAC::Sign(const std::string& data, in Sign()
Dhmac.h21 class HMAC {
28 explicit HMAC(HashAlgorithm hash_alg);
29 ~HMAC();
51 DISALLOW_COPY_AND_ASSIGN(HMAC);
/external/dropbear/libtomcrypt/notes/
Dhmac_tv.txt1 HMAC Tests. In these tests messages of N bytes long (00,01,02,...,NN-1) are HMACed. The initial k…
2 of the same format (the same length as the HASH output size). The HMAC key in step N+1 is the HMAC
5 HMAC-tiger
136 HMAC-md2
171 HMAC-md4
302 HMAC-md5
433 HMAC-sha1
564 HMAC-sha224
695 HMAC-sha256
826 HMAC-sha384
[all …]
Dtech0005.txt12 The following build with GCC 3.4.4 on an AMD64 box gets you AES, CTR mode, SHA-256, HMAC, Yarrow, f…
/external/openssl/crypto/hmac/
Dhmac.h64 #error HMAC is disabled.
99 unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len,
Dhmactest.c145 p=pt(HMAC(EVP_md5(), in main()
Dhmac.c191 unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len, in HMAC() function
/external/openssl/include/openssl/
Dhmac.h64 #error HMAC is disabled.
99 unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len,
/external/openssl/apps/
Ds_cb.c773 HMAC(EVP_sha1(), cookie_secret, COOKIE_SECRET_LENGTH, in generate_cookie_callback()
854 HMAC(EVP_sha1(), cookie_secret, COOKIE_SECRET_LENGTH, in verify_cookie_callback()
/external/openssl/crypto/evp/
Dp5_crpt2.c120 HMAC(digest, pass, passlen, in PKCS5_PBKDF2_HMAC()
/external/openssl/crypto/err/
Dopenssl.ec35 L HMAC crypto/hmac/hmac.h crypto/hmac/hmac_err.c
/external/openssl/crypto/
Dinstall.com46 MD2,MD4,MD5,SHA,MDC2,HMAC,RIPEMD,WHRLPOOL,-
/external/openssl/crypto/objects/
Dobjects.txt14 # HMAC OIDs
15 identified-organization 6 1 5 5 8 1 1 : HMAC-MD5 : hmac-md5
16 identified-organization 6 1 5 5 8 1 2 : HMAC-SHA1 : hmac-sha1
1141 cryptopro 10 : id-HMACGostR3411-94 : HMAC GOST 34.11-94
1257 # There is no OID that just denotes "HMAC" oddly enough...
1259 : HMAC : hmac
/external/dropbear/libtomcrypt/
Dchanges42 …-- Renamed macros HMAC/OMAC/PMAC to have a LTC_ prefix. If you pass these on the command line ple…
527 -- Fixed buffer overflows/overruns in the HMAC code.
558 -- Reduced stack usage in OMAC/PMAC/HMAC/EAX/OCB/PKCS#5 by mallocing any significant sized
676 -- Made HMAC test vectors constant and static [takes ROM space instead of RAM]
691 Updated HMAC code to use them too. Hazaa!
701 -- Added OMAC/HMAC tests to demos/tv_gen and I now store the output of this in notes/
703 …-- Fixed bug in hmac_done(). Apparently FIPS-198 [HMAC] specifies that the output can be truncate…
706 …-- Made demos/test.c stop if OMAC or HMAC tests fail (instead of just printing a failed message an…
713 v0.91 -- HMAC fix of 0.90 was incorrect for keys larger than the block size of the hash.
810 -- Change to HMAC helper functions API to avoid buffer overflow [source changes]
[all …]
Dcrypt.tex2076 \mysection{HMAC Protocol}
2077 …brary 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 i…
2082 The HMAC support works much like the normal hash functions except that the initialization routine r…
2092 The \textit{hmac} parameter is the state for the HMAC code. The \textit{hash} parameter is the ind…
2094 …use to authenticate the message. To send octets of a message through the HMAC system you must use…
2101 \textit{hmac} is the HMAC state you are working with. \textit{buf} is the array of octets to send i…
2103 are finished with the HMAC process you must call the following function to get the HMAC code:
2110 …tit{hmac} parameter is the HMAC state you are working with. The \textit{out} parameter is the arr…
2111 …he destination buffer before calling this function. It is updated with the length of the HMAC code
[all …]
/external/bouncycastle/patches/
Dandroid.patch6230 // HMAC Related secret keys..
7047 - // for the key generation as is used in the HMAC, so that
7100 + // // for the key generation as is used in the HMAC, so that