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

/freebsd-10.1-release/crypto/openssl/ssl/
H A Dd1_clnt.c1074 unsigned char epms[SSL_MAX_MASTER_KEY_LENGTH + EVP_MAX_IV_LENGTH]; local
1075 int padl, outl = sizeof(epms);
1162 EVP_EncryptUpdate(&ciph_ctx, epms, &outl, tmp_buf,
1164 EVP_EncryptFinal_ex(&ciph_ctx, &(epms[outl]), &padl);
1166 if (outl > (int)sizeof epms) {
1175 memcpy(p, epms, outl);
1187 OPENSSL_cleanse(epms, outl);
H A Ds3_clnt.c2425 unsigned char epms[SSL_MAX_MASTER_KEY_LENGTH + EVP_MAX_IV_LENGTH]; local
2426 int padl, outl = sizeof(epms);
2516 EVP_EncryptUpdate(&ciph_ctx, epms, &outl, tmp_buf,
2518 EVP_EncryptFinal_ex(&ciph_ctx, &(epms[outl]), &padl);
2520 if (outl > (int)sizeof epms) {
2529 memcpy(p, epms, outl);
2541 OPENSSL_cleanse(epms, outl);

Completed in 49 milliseconds