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

  /src/crypto/external/apache2/openssl/dist/ssl/record/methods/
tls_pad.c 214 size_t rotate_offset; local
259 rotate_offset = 0;
268 rotate_offset |= j & mac_started;
281 aux1 = rotated_mac[rotate_offset & ~32];
282 aux2 = rotated_mac[rotate_offset | 32];
283 mask = constant_time_eq_8(rotate_offset & ~32, rotate_offset);
285 rotate_offset++;
291 rotate_offset &= constant_time_lt_s(rotate_offset, mac_size)
    [all...]
  /src/crypto/external/bsd/openssl/dist/ssl/record/
tls_pad.c 229 size_t rotate_offset; local
274 rotate_offset = 0;
283 rotate_offset |= j & mac_started;
296 aux1 = rotated_mac[rotate_offset & ~32];
297 aux2 = rotated_mac[rotate_offset | 32];
298 mask = constant_time_eq_8(rotate_offset & ~32, rotate_offset);
300 rotate_offset++;
306 rotate_offset &= constant_time_lt_s(rotate_offset, mac_size)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/ssl/record/
ssl3_record.c 1552 size_t rotate_offset; local
1567 rotate_offset = 0;
1576 rotate_offset |= j & mac_started;
1589 aux1 = rotated_mac[rotate_offset & ~32];
1590 aux2 = rotated_mac[rotate_offset | 32];
1591 mask = constant_time_eq_8(rotate_offset & ~32, rotate_offset);
1594 rotate_offset++;
1595 rotate_offset &= constant_time_lt_s(rotate_offset, md_size)
    [all...]

Completed in 17 milliseconds