OpenBSD manual page server

Manual Page Search Parameters

RSA_SIZE(3) Library Functions Manual RSA_SIZE(3)

RSA_size, RSA_bitsget the RSA modulus size

#include <openssl/rsa.h>

int
RSA_size(const RSA *rsa);

int
RSA_bits(const RSA *rsa);

() returns the RSA modulus size in bytes. It can be used to determine how much memory must be allocated for an RSA encrypted value.

() returns the number of significant bits.

rsa and rsa->n must not be NULL.

The size.

BN_num_bits(3), RSA_get0_key(3), RSA_new(3)

RSA_size() first appeared in SSLeay 0.4.4 and has been available since OpenBSD 2.4.

RSA_bits() first appeared in OpenSSL 1.1.0 and has been available since OpenBSD 6.3.

March 27, 2018 OpenBSD-6.7