Searched defs:hmac_key (Results 1 - 3 of 3) sorted by relevance

/external/boringssl/src/crypto/cipher/
H A De_rc4.c111 uint8_t hmac_key[MD5_CBLOCK]; local
139 memset(hmac_key, 0, sizeof(hmac_key));
140 memcpy(hmac_key, key, MD5_DIGEST_LENGTH);
141 for (i = 0; i < sizeof(hmac_key); i++) {
142 hmac_key[i] ^= 0x36;
145 MD5_Update(&rc4_ctx->head, hmac_key, sizeof(hmac_key));
146 for (i = 0; i < sizeof(hmac_key); i++) {
147 hmac_key[
[all...]
H A De_aes.c1515 const uint8_t hmac_key[32]) {
1518 memcpy(block, hmac_key, hmac_key_len);
1514 hmac_init(SHA256_CTX *out_inner, SHA256_CTX *out_outer, const uint8_t hmac_key[32]) argument
/external/boringssl/src/crypto/pkcs8/
H A Dpkcs8.c956 uint8_t hmac_key[EVP_MAX_MD_SIZE]; local
989 EVP_MD_size(md), hmac_key, md)) {
993 if (NULL == HMAC(md, hmac_key, EVP_MD_size(md), CBS_data(&authsafes),

Completed in 269 milliseconds