[#EVP_CIPHER_meth_set_get_asn1_params] = EVP_CIPHER_meth_set_get_asn1_params :mrdocs: Set the callback that exports cipher parameters into an ASN.1 type (deprecated). == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int EVP_CIPHER_meth_set_get_asn1_params( xref:EVP_CIPHER-07.adoc[EVP_CIPHER]* cipher, int(* get_asn1_parameters)(xref:EVP_CIPHER_CTX.adoc[EVP_CIPHER_CTX]*, xref:ASN1_TYPE.adoc[ASN1_TYPE]*)); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *cipher* | Custom cipher method to update. | *get_asn1_parameters* | Callback that fills an ASN1_TYPE from the cipher context, or NULL. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#