Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/cipher_extra/
De_aesctrhmac.c40 static const size_t hmac_key_len = 32; in hmac_init() local
42 OPENSSL_memcpy(block, hmac_key, hmac_key_len); in hmac_init()
43 OPENSSL_memset(block + hmac_key_len, 0x36, sizeof(block) - hmac_key_len); in hmac_init()
46 for (i = 0; i < hmac_key_len; i++) { in hmac_init()
53 OPENSSL_memset(block + hmac_key_len, 0x5c, sizeof(block) - hmac_key_len); in hmac_init()
54 for (i = 0; i < hmac_key_len; i++) { in hmac_init()
65 static const size_t hmac_key_len = 32; in aead_aes_ctr_hmac_sha256_init() local
67 if (key_len < hmac_key_len) { in aead_aes_ctr_hmac_sha256_init()
72 const size_t aes_key_len = key_len - hmac_key_len; in aead_aes_ctr_hmac_sha256_init()