HomeSort by: relevance | last modified time | path
    Searched defs:variance_blocks (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/ssl/record/methods/
ssl3_cbc.c 143 size_t sslv3_pad_length = 40, header_length, variance_blocks, local
241 * variance_blocks is the number of blocks of the hash that we have to
249 * required to be minimal. Therefore we say that the final |variance_blocks|
253 * variance_blocks can be reduced.
255 variance_blocks = is_sslv3 ? 2
275 * to appear somewhere in the final |variance_blocks| blocks and we can't
314 if (num_blocks > variance_blocks + (is_sslv3 ? 1 : 0)) {
315 num_starting_blocks = num_blocks - variance_blocks;
393 for (i = num_starting_blocks; i <= num_starting_blocks + variance_blocks;
  /src/crypto/external/bsd/openssl/dist/ssl/
s3_cbc.c 175 size_t sslv3_pad_length = 40, header_length, variance_blocks, local
278 * variance_blocks is the number of blocks of the hash that we have to
286 * required to be minimal. Therefore we say that the final |variance_blocks|
290 * variance_blocks can be reduced.
292 variance_blocks = is_sslv3 ? 2 : ( ((255 + 1 + md_size + md_block_size - 1) / md_block_size) + 1);
311 * to appear somewhere in the final |variance_blocks| blocks and we can't
350 if (num_blocks > variance_blocks + (is_sslv3 ? 1 : 0)) {
351 num_starting_blocks = num_blocks - variance_blocks;
429 for (i = num_starting_blocks; i <= num_starting_blocks + variance_blocks;
  /src/crypto/external/bsd/openssl.old/dist/ssl/
s3_cbc.c 145 size_t sslv3_pad_length = 40, header_length, variance_blocks, local
251 * variance_blocks is the number of blocks of the hash that we have to
259 * required to be minimal. Therefore we say that the final |variance_blocks|
263 * variance_blocks can be reduced.
265 variance_blocks = is_sslv3 ? 2 : ( ((255 + 1 + md_size + md_block_size - 1) / md_block_size) + 1);
284 * to appear somewhere in the final |variance_blocks| blocks and we can't
323 if (num_blocks > variance_blocks + (is_sslv3 ? 1 : 0)) {
324 num_starting_blocks = num_blocks - variance_blocks;
402 for (i = num_starting_blocks; i <= num_starting_blocks + variance_blocks;

Completed in 15 milliseconds