Install the DSA signing callback on a DSA_METHOD (deprecated).

Synopsis

Declared in <openssl/dsa.h>

[[deprecated]]
int
DSA_meth_set_sign(
    DSA_METHOD* dsam,
    DSA_SIG*(* sign)(unsigned char const*, int, DSA*));
Warning

Deprecated. Use of this entity is allowed but discouraged.

Return Value

1 on success, or 0 on error.

Parameters

Name

Description

dsam

Method being configured.

sign

Callback that signs a digest and returns a DSA_SIG, or NULL to clear.

Created with MrDocs