Home | History | Annotate | Download | only in ssl

Lines Matching refs:ciph_ctx

1052 			EVP_CIPHER_CTX	ciph_ctx;
1060 EVP_CIPHER_CTX_init(&ciph_ctx);
1141 ** EVP_EncryptInit_ex(&ciph_ctx,enc, NULL,NULL);
1142 ** EVP_CIPHER_CTX_set_key_length(&ciph_ctx,
1144 ** EVP_EncryptInit_ex(&ciph_ctx,NULL, key,iv);
1148 EVP_EncryptInit_ex(&ciph_ctx,enc, NULL,
1150 EVP_EncryptUpdate(&ciph_ctx,epms,&outl,tmp_buf,
1152 EVP_EncryptFinal_ex(&ciph_ctx,&(epms[outl]),&padl);
1159 EVP_CIPHER_CTX_cleanup(&ciph_ctx);