[#EVP_CIPHER_meth_set_impl_ctx_size] = EVP_CIPHER_meth_set_impl_ctx_size :mrdocs: Set how many bytes of cipher‐specific context storage to allocate (deprecated). == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int EVP_CIPHER_meth_set_impl_ctx_size( xref:EVP_CIPHER-07.adoc[EVP_CIPHER]* cipher, int ctx_size); ---- [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. | *ctx_size* | Size in bytes of the implementation context allocated with each EVP_CIPHER_CTX. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#