Searched refs:hmac (Results 26 - 50 of 110) sorted by relevance

12345

/external/chromium_org/third_party/boringssl/src/crypto/evp/
H A Dpbkdf.c58 #include <openssl/hmac.h>
H A Dp_hmac.c60 #include <openssl/hmac.h>
/external/chromium_org/third_party/boringssl/src/crypto/hmac/
H A Dhmac_test.c61 #include <openssl/hmac.h>
H A Dhmac.c57 #include <openssl/hmac.h>
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dd1_enc.c118 #include <openssl/hmac.h>
/external/openssl/crypto/hmac/
H A Dhmactest.c1 /* crypto/hmac/hmactest.c */
72 #include <openssl/hmac.h>
H A Dhm_pmeth.c63 #include <openssl/hmac.h>
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_auth.c641 alloc_size = sizeof(*new_list) + num_hmacs * sizeof(new_list->hmac[0]);
683 if (list->hmac[i] == hmac_id) {
689 list->hmac[list->num_algo++] = hmac_id;
709 new_list->hmac[i] = list->hmac[i];
747 if (peer->hmac[i] == local->hmac[j]) {
751 peer->hmac[i]);
752 return (peer->hmac[i]);
774 hmac_id = htons(list->hmac[
[all...]
H A Dsctp_auth.h81 /* hmac algos supported list */
85 uint16_t hmac[]; member in struct:sctp_hmaclist
151 /* hmac list handling */
/external/chromium_org/third_party/tlslite/tlslite/
H A Dmathtls.py12 import hmac namespace
111 return hmac.HMAC(k, digestmod=digestmod)
/external/openssl/
H A DCrypto-config-trusty.mk154 crypto/hmac/hm_ameth.c \
155 crypto/hmac/hm_pmeth.c \
156 crypto/hmac/hmac.c \
/external/chromium_org/chromeos/network/onc/
H A Donc_utils.cc19 #include "crypto/hmac.h"
68 std::string hmac; local
74 !root.GetString(encrypted::kHMAC, &hmac) ||
127 if (!base::Base64Decode(hmac, &hmac)) {
134 !hmac_verifier.Verify(ciphertext, hmac)) {
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dcrypto_libtomcrypt.c148 hmac_state hmac; member in union:crypto_hash::__anon33593
174 if (hmac_init(&ctx->u.hmac, find_hash("md5"), key, key_len) !=
179 if (hmac_init(&ctx->u.hmac, find_hash("sha1"), key, key_len) !=
208 ctx->error = hmac_process(&ctx->u.hmac, data, len) != CRYPT_OK;
267 if (hmac_done(&ctx->u.hmac, mac, &clen) != CRYPT_OK) {
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_libtomcrypt.c148 hmac_state hmac; member in union:crypto_hash::__anon33846
174 if (hmac_init(&ctx->u.hmac, find_hash("md5"), key, key_len) !=
179 if (hmac_init(&ctx->u.hmac, find_hash("sha1"), key, key_len) !=
208 ctx->error = hmac_process(&ctx->u.hmac, data, len) != CRYPT_OK;
267 if (hmac_done(&ctx->u.hmac, mac, &clen) != CRYPT_OK) {
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dcrypto_libtomcrypt.c148 hmac_state hmac; member in union:crypto_hash::__anon34097
174 if (hmac_init(&ctx->u.hmac, find_hash("md5"), key, key_len) !=
179 if (hmac_init(&ctx->u.hmac, find_hash("sha1"), key, key_len) !=
208 ctx->error = hmac_process(&ctx->u.hmac, data, len) != CRYPT_OK;
267 if (hmac_done(&ctx->u.hmac, mac, &clen) != CRYPT_OK) {
/external/chromium_org/chrome/browser/extensions/api/webrtc_audio_private/
H A Dwebrtc_audio_private_api.cc169 std::string hmac = CalculateHMACImpl(raw_id); local
173 base::Bind(&WebrtcAudioPrivateFunction::OnHMACCalculated, this, hmac));
176 void WebrtcAudioPrivateFunction::OnHMACCalculated(const std::string& hmac) { argument
/external/chromium_org/chrome/browser/
H A Dinternal_auth.cc20 #include "crypto/hmac.h"
161 std::string hmac;
163 WriteInto(&hmac, kHMACSizeInBytes + 1));
169 base::Base64Encode(hmac, &hmac_base64);
277 // Passport consists of 2 parts: first hmac and then tick.
/external/chromium_org/third_party/libsrtp/srtp/crypto/
H A DMakefile81 hash/hmac.o hash/auth.o
/external/openssl/ssl/
H A Dd1_enc.c122 #include <openssl/hmac.h>
/external/srtp/crypto/
H A DMakefile74 hash/hmac.o hash/auth.o
/external/chromium_org/third_party/libsrtp/srtp/crypto/kernel/
H A Dcrypto_kernel.c80 extern auth_type_t hmac;
165 status = crypto_kernel_load_auth_type(&hmac, HMAC_SHA1);
/external/srtp/crypto/kernel/
H A Dcrypto_kernel.c80 extern auth_type_t hmac;
165 status = crypto_kernel_load_auth_type(&hmac, HMAC_SHA1);
/external/chromium_org/content/child/webcrypto/openssl/
H A Dhmac_openssl.cc5 #include <openssl/hmac.h>
/external/chromium_org/third_party/boringssl/src/crypto/pkcs8/
H A Dpkcs8.c67 #include <openssl/hmac.h>
948 uint8_t hmac[EVP_MAX_MD_SIZE]; local
984 CBS_len(&authsafes), hmac, &hmac_len)) {
988 if (!CBS_mem_equal(&expected_mac, hmac, hmac_len)) {
/external/openssl/crypto/evp/
H A Dp5_crpt2.c64 #include <openssl/hmac.h>

Completed in 1421 milliseconds

12345