RSA_size - Get RSA modulus size
#include <openssl/rsa.h>
int RSA_size(
RSA *rsa );
This function returns the RSA modulus size in bytes. It
can be used to determine how much memory must be allocated
for an RSA encrypted value.
The rsa->n must not be NULL.
The size in bytes.
The RSA_size() function is available in all versions of
SSLeay and OpenSSL.
Functions: rsa(3)
RSA_size(3)
[ Back ] |