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

  /src/crypto/external/apache2/openssl/dist/ssl/record/methods/
tls_pad.c 194 unsigned char *rotated_mac; local
197 unsigned char rotated_mac[EVP_MAX_MD_SIZE];
251 rotated_mac = rotated_mac_buf + ((0 - (size_t)rotated_mac_buf) & 63);
260 memset(rotated_mac, 0, mac_size);
269 rotated_mac[j++] |= b & in_mac;
281 aux1 = rotated_mac[rotate_offset & ~32];
282 aux2 = rotated_mac[rotate_offset | 32];
299 out[j] |= rotated_mac[i] & constant_time_eq_8_s(j, rotate_offset);
  /src/crypto/external/bsd/openssl/dist/ssl/record/
tls_pad.c 209 unsigned char *rotated_mac; local
212 unsigned char rotated_mac[EVP_MAX_MD_SIZE];
266 rotated_mac = rotated_mac_buf + ((0 - (size_t)rotated_mac_buf) & 63);
275 memset(rotated_mac, 0, mac_size);
284 rotated_mac[j++] |= b & in_mac;
296 aux1 = rotated_mac[rotate_offset & ~32];
297 aux2 = rotated_mac[rotate_offset | 32];
314 out[j] |= rotated_mac[i] & constant_time_eq_8_s(j, rotate_offset);
  /src/crypto/external/bsd/openssl.old/dist/ssl/record/
ssl3_record.c 1534 unsigned char *rotated_mac; local
1537 unsigned char rotated_mac[EVP_MAX_MD_SIZE];
1559 rotated_mac = rotated_mac_buf + ((0 - (size_t)rotated_mac_buf) & 63);
1568 memset(rotated_mac, 0, md_size);
1577 rotated_mac[j++] |= b & in_mac;
1589 aux1 = rotated_mac[rotate_offset & ~32];
1590 aux2 = rotated_mac[rotate_offset | 32];
1603 out[j] |= rotated_mac[i] & constant_time_eq_8_s(j, rotate_offset);

Completed in 14 milliseconds