Searched refs:variance_blocks (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/boringssl/src/ssl/
H A Ds3_cbc.c402 unsigned sslv3_pad_length = 40, header_length, variance_blocks, local
468 /* variance_blocks is the number of blocks of the hash that we have to
483 * cannot be this many blocks then variance_blocks can be reduced. */
484 variance_blocks = is_sslv3 ? 2 : 6;
496 * end to appear somewhere in the final |variance_blocks| blocks and we
522 if (num_blocks > variance_blocks + (is_sslv3 ? 1 : 0))
524 num_starting_blocks = num_blocks - variance_blocks;
582 for (i = num_starting_blocks; i <= num_starting_blocks+variance_blocks; i++)
/external/openssl/ssl/
H A Ds3_cbc.c417 unsigned sslv3_pad_length = 40, header_length, variance_blocks, local
510 /* variance_blocks is the number of blocks of the hash that we have to
525 * cannot be this many blocks then variance_blocks can be reduced. */
526 variance_blocks = is_sslv3 ? 2 : 6;
538 * end to appear somewhere in the final |variance_blocks| blocks and we
564 if (num_blocks > variance_blocks + (is_sslv3 ? 1 : 0))
566 num_starting_blocks = num_blocks - variance_blocks;
636 for (i = num_starting_blocks; i <= num_starting_blocks+variance_blocks; i++)

Completed in 95 milliseconds