Allocate a new DSA_METHOD with the given name and default flags (deprecated).

Synopsis

Declared in <openssl/dsa.h>

[[deprecated]]
DSA_METHOD*
DSA_meth_new(
    char const* name,
    int flags);
Warning

Deprecated. Use of this entity is allowed but discouraged.

Return Value

New DSA_METHOD, or NULL on failure; free with DSA_meth_free().

Parameters

Name

Description

name

NUL‐terminated descriptive name; duplicated into the method object.

flags

Flag bits copied onto DSA objects that use this method.

Created with MrDocs