DSA_meth_get_mod_exp

Return the modular-exponentiation callback from a DSA_METHOD (deprecated).

Synopsis

Declared in <openssl/dsa.h>

[[deprecated]]
int(*
DSA_meth_get_mod_exp(DSA_METHOD const* dsam))(DSA*, BIGNUM*, BIGNUM const*, BIGNUM const*, BIGNUM const*, BIGNUM const*, BIGNUM const*, BN_CTX*, BN_MONT_CTX*);

WARNING

Deprecated. Use of this entity is allowed but discouraged.

Return Value

Pointer to the mod_exp callback used during signing/verification, or NULL if unset.

Parameters

NameDescription
dsamMethod table to query.