Searched refs:TAG_LEN (Results 1 – 1 of 1) sorted by relevance
/external/srtp/crypto/ae_xfm/ |
D | xfm.c | 19 #define TAG_LEN 12 macro 88 status = hmac_compute(&hmac_ctx, opaque, *opaque_len, TAG_LEN, auth_tag); in aes_128_cbc_hmac_sha1_96_func() 108 unsigned char tmp_tag[TAG_LEN]; in aes_128_cbc_hmac_sha1_96_inv() 164 status = hmac_compute(&hmac_ctx, opaque, *opaque_len, TAG_LEN, tmp_tag); in aes_128_cbc_hmac_sha1_96_inv() 168 for (i=0; i < TAG_LEN; i++) in aes_128_cbc_hmac_sha1_96_inv() 276 status = hmac_compute(&hmac_ctx, opaque, *opaque_len, TAG_LEN, auth_tag); in aes_128_cbc_hmac_sha1_96_enc() 283 *opaque_len += TAG_LEN; in aes_128_cbc_hmac_sha1_96_enc() 305 unsigned char tmp_tag[TAG_LEN]; in aes_128_cbc_hmac_sha1_96_dec() 349 ciphertext_len = *opaque_len - TAG_LEN; in aes_128_cbc_hmac_sha1_96_dec() 374 status = hmac_compute(&hmac_ctx, opaque, ciphertext_len, TAG_LEN, tmp_tag); in aes_128_cbc_hmac_sha1_96_dec() [all …]
|