Home | History | Annotate | Download | only in ssl

Lines Matching refs:ciph_ctx

2160 		EVP_CIPHER_CTX		ciph_ctx;
2169 EVP_CIPHER_CTX_init(&ciph_ctx);
2269 if (!EVP_DecryptInit_ex(&ciph_ctx,enc,NULL,kssl_ctx->key,iv))
2275 if (!EVP_DecryptUpdate(&ciph_ctx, pms,&outl,
2288 if (!EVP_DecryptFinal_ex(&ciph_ctx,&(pms[outl]),&padl))
2319 EVP_CIPHER_CTX_cleanup(&ciph_ctx);