HomeSort by relevance Sort by last modified time
    Searched defs:bytes_to_encr (Results 1 - 2 of 2) sorted by null

  /external/srtp/crypto/cipher/
aes_cbc.c 156 int bytes_to_encr = *bytes_in_data; local
175 while (bytes_to_encr > 0) {
193 bytes_to_encr -= 16;
207 int bytes_to_encr = *bytes_in_data; local
228 while (bytes_to_encr > 0) {
255 bytes_to_encr -= 16;
aes_icm.c 321 * bytes_to_encr < bytes_in_buffer
324 * bytes_to_encr > bytes_in_buffer
335 unsigned int bytes_to_encr = *enc_len; local
340 if (!forIsmacryp && (bytes_to_encr + htons(c->counter.v16[7])) > 0xffff)
345 if (bytes_to_encr <= (unsigned int)c->bytes_in_buffer) {
347 /* deal with odd case of small bytes_to_encr */
349 i < (sizeof(v128_t) - c->bytes_in_buffer + bytes_to_encr); i++)
354 c->bytes_in_buffer -= bytes_to_encr;
365 bytes_to_encr -= c->bytes_in_buffer;
371 for (i=0; i < (bytes_to_encr/sizeof(v128_t)); i++)
    [all...]

Completed in 111 milliseconds