[#RSA_meth_new] = RSA_meth_new :mrdocs: Allocate a new RSA_METHOD with the given name and flags (deprecated). == Synopsis Declared in `<openssl/rsa.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] xref:RSA_METHOD.adoc[RSA_METHOD]* RSA_meth_new( char const* name, int flags); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value New RSA_METHOD, or NULL on allocation failure. == Parameters [cols="1,4"] |=== | Name| Description | *name* | Human‐readable method name copied into the object. | *flags* | Method flags such as RSA_METHOD_FLAG_NO_CHECK. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#