Home | History | Annotate | Download | only in ssl

Lines Matching refs:ciph_ctx

2144 			EVP_CIPHER_CTX	ciph_ctx;
2152 EVP_CIPHER_CTX_init(&ciph_ctx);
2235 ** EVP_EncryptInit_ex(&ciph_ctx,enc, NULL,NULL);
2236 ** EVP_CIPHER_CTX_set_key_length(&ciph_ctx,
2238 ** EVP_EncryptInit_ex(&ciph_ctx,NULL, key,iv);
2242 EVP_EncryptInit_ex(&ciph_ctx,enc, NULL,
2244 EVP_EncryptUpdate(&ciph_ctx,epms,&outl,tmp_buf,
2246 EVP_EncryptFinal_ex(&ciph_ctx,&(epms[outl]),&padl);
2253 EVP_CIPHER_CTX_cleanup(&ciph_ctx);