[#EVP_CIPHER_meth_set_iv_length] = EVP_CIPHER_meth_set_iv_length :mrdocs: Set the IV length advertised by a custom EVP_CIPHER method (deprecated). == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int EVP_CIPHER_meth_set_iv_length( xref:EVP_CIPHER-07.adoc[EVP_CIPHER]* cipher, int iv_len); ---- [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* | Cipher method under construction. | *iv_len* | IV length in bytes. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#