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

  /src/crypto/external/apache2/openssl/dist/ssl/record/methods/
ssl3_cbc.c 148 /* hmac_pad is the masked HMAC key. */
149 unsigned char hmac_pad[MAX_HASH_BLOCK_SIZE]; local
327 memset(hmac_pad, 0, md_block_size);
328 if (!ossl_assert(mac_secret_length <= sizeof(hmac_pad)))
330 memcpy(hmac_pad, mac_secret, mac_secret_length);
332 hmac_pad[i] ^= 0x36;
334 md_transform(md_state.c, hmac_pad);
453 /* We repurpose |hmac_pad| to contain the SSLv3 pad2 block. */
454 memset(hmac_pad, 0x5c, sslv3_pad_length);
457 || EVP_DigestUpdate(md_ctx, hmac_pad, sslv3_pad_length) <=
    [all...]
  /src/crypto/external/bsd/openssl/dist/ssl/
s3_cbc.c 180 /* hmac_pad is the masked HMAC key. */
181 unsigned char hmac_pad[MAX_HASH_BLOCK_SIZE]; local
363 memset(hmac_pad, 0, md_block_size);
364 if (!ossl_assert(mac_secret_length <= sizeof(hmac_pad)))
366 memcpy(hmac_pad, mac_secret, mac_secret_length);
368 hmac_pad[i] ^= 0x36;
370 md_transform(md_state.c, hmac_pad);
489 /* We repurpose |hmac_pad| to contain the SSLv3 pad2 block. */
490 memset(hmac_pad, 0x5c, sslv3_pad_length);
493 || EVP_DigestUpdate(md_ctx, hmac_pad, sslv3_pad_length) <=
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/ssl/
s3_cbc.c 150 /* hmac_pad is the masked HMAC key. */
151 unsigned char hmac_pad[MAX_HASH_BLOCK_SIZE]; local
336 memset(hmac_pad, 0, md_block_size);
337 if (!ossl_assert(mac_secret_length <= sizeof(hmac_pad)))
339 memcpy(hmac_pad, mac_secret, mac_secret_length);
341 hmac_pad[i] ^= 0x36;
343 md_transform(md_state.c, hmac_pad);
461 /* We repurpose |hmac_pad| to contain the SSLv3 pad2 block. */
462 memset(hmac_pad, 0x5c, sslv3_pad_length);
465 || EVP_DigestUpdate(md_ctx, hmac_pad, sslv3_pad_length) <=
    [all...]

Completed in 20 milliseconds