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

/freebsd-10-stable/crypto/openssl/ssl/
H A Dd1_clnt.c1085 unsigned char epms[SSL_MAX_MASTER_KEY_LENGTH + EVP_MAX_IV_LENGTH]; local
1086 int padl, outl = sizeof(epms);
1173 EVP_EncryptUpdate(&ciph_ctx, epms, &outl, tmp_buf,
1175 EVP_EncryptFinal_ex(&ciph_ctx, &(epms[outl]), &padl);
1177 if (outl > (int)sizeof epms) {
1186 memcpy(p, epms, outl);
1198 OPENSSL_cleanse(epms, outl);
H A Ds3_clnt.c2468 unsigned char epms[SSL_MAX_MASTER_KEY_LENGTH + EVP_MAX_IV_LENGTH]; local
2469 int padl, outl = sizeof(epms);
2559 EVP_EncryptUpdate(&ciph_ctx, epms, &outl, tmp_buf,
2561 EVP_EncryptFinal_ex(&ciph_ctx, &(epms[outl]), &padl);
2563 if (outl > (int)sizeof epms) {
2572 memcpy(p, epms, outl);
2584 OPENSSL_cleanse(epms, outl);

Completed in 158 milliseconds