Home
last modified time | relevance | path

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

/net-tools-3.5.0/mbedtls-2.4.0/library/
Dccm.c146 size_t len_left, olen; in ccm_auth_crypt() local
189 for( i = 0, len_left = length; i < q; i++, len_left >>= 8 ) in ccm_auth_crypt()
190 b[15-i] = (unsigned char)( len_left & 0xFF ); in ccm_auth_crypt()
192 if( len_left > 0 ) in ccm_auth_crypt()
207 len_left = add_len; in ccm_auth_crypt()
214 use_len = len_left < 16 - 2 ? len_left : 16 - 2; in ccm_auth_crypt()
216 len_left -= use_len; in ccm_auth_crypt()
221 while( len_left > 0 ) in ccm_auth_crypt()
223 use_len = len_left > 16 ? 16 : len_left; in ccm_auth_crypt()
229 len_left -= use_len; in ccm_auth_crypt()
[all …]