aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssl/doc/crypto/RSA_new.pod
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssl/doc/crypto/RSA_new.pod')
-rw-r--r--crypto/openssl/doc/crypto/RSA_new.pod7
1 files changed, 5 insertions, 2 deletions
diff --git a/crypto/openssl/doc/crypto/RSA_new.pod b/crypto/openssl/doc/crypto/RSA_new.pod
index f16490ea6a16..3d15b928243d 100644
--- a/crypto/openssl/doc/crypto/RSA_new.pod
+++ b/crypto/openssl/doc/crypto/RSA_new.pod
@@ -14,7 +14,8 @@ RSA_new, RSA_free - allocate and free RSA objects
=head1 DESCRIPTION
-RSA_new() allocates and initializes an B<RSA> structure.
+RSA_new() allocates and initializes an B<RSA> structure. It is equivalent to
+calling RSA_new_method(NULL).
RSA_free() frees the B<RSA> structure and its components. The key is
erased before the memory is returned to the system.
@@ -29,7 +30,9 @@ RSA_free() returns no value.
=head1 SEE ALSO
-L<err(3)|err(3)>, L<rsa(3)|rsa(3)>, L<RSA_generate_key(3)|RSA_generate_key(3)>
+L<ERR_get_error(3)|ERR_get_error(3)>, L<rsa(3)|rsa(3)>,
+L<RSA_generate_key(3)|RSA_generate_key(3)>,
+L<RSA_new_method(3)|RSA_new_method(3)>
=head1 HISTORY