RSA_meth_get_bn_mod_exp

Return the BN modular-exponentiation callback from an RSA_METHOD (deprecated).

Synopsis

Declared in <openssl/rsa.h>

[[deprecated]]
int(*
RSA_meth_get_bn_mod_exp(RSA_METHOD const* meth))(BIGNUM*, 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 bn_mod_exp callback, or NULL if unset.

Parameters

NameDescription
methMethod table to query.