[#DSA_meth_new] = DSA_meth_new :mrdocs: Allocate a new DSA_METHOD with the given name and default flags (deprecated). == Synopsis Declared in `<openssl/dsa.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] xref:DSA_METHOD-07a.adoc[DSA_METHOD]* DSA_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 DSA_METHOD, or NULL on failure; free with DSA_meth_free(). == Parameters [cols="1,4"] |=== | Name| Description | *name* | NUL‐terminated descriptive name; duplicated into the method object. | *flags* | Flag bits copied onto DSA objects that use this method. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#