Home | History | Annotate | Download | only in ssl

Lines Matching refs:ciph_ctx

876 			EVP_CIPHER_CTX	ciph_ctx;
884 EVP_CIPHER_CTX_init(&ciph_ctx);
965 ** EVP_EncryptInit_ex(&ciph_ctx,enc, NULL,NULL);
966 ** EVP_CIPHER_CTX_set_key_length(&ciph_ctx,
968 ** EVP_EncryptInit_ex(&ciph_ctx,NULL, key,iv);
972 EVP_EncryptInit_ex(&ciph_ctx,enc, NULL,
974 EVP_EncryptUpdate(&ciph_ctx,epms,&outl,tmp_buf,
976 EVP_EncryptFinal_ex(&ciph_ctx,&(epms[outl]),&padl);
983 EVP_CIPHER_CTX_cleanup(&ciph_ctx);