"RSA * RSA_new_method (ENGINE *engine)"
"void RSA_free (RSA *rsa)"
"int RSA_up_ref (RSA *rsa)"
"const RSA_METHOD * RSA_get_method (const RSA *rsa)"
"int RSA_set_method (RSA *rsa, const RSA_METHOD *method)"
"int RSA_set_app_data (RSA *rsa, void *arg)"
"void * RSA_get_app_data (const RSA *rsa)"
See the RSA - public-key cryptography for description and examples.
Parameters
rsa the RSA object to free.
Parameters
rsa the rsa object to get the parameter for
Returns
the data object
Parameters
rsa the object to get the method from.
Returns
the method used for this RSA object.
Returns
a newly allocated RSA object. Free with RSA_free().
Parameters
engine Specific what ENGINE RSA provider should be used.
Returns
a newly allocated RSA object. Free with RSA_free().
Parameters
rsa the rsa object to set the parameter for
arg the data object to store
Returns
1 on success.
Parameters
rsa rsa parameter.
method the new method for the RSA parameter.
Returns
1 on success.
Parameters
rsa the object to add reference counting too.
Returns
the current reference count, can't safely be used except for debug printing.
Generated automatically by Doxygen for Heimdal crypto library from the source code.