X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=doc%2Fcrypto%2FRSA_new.pod;h=3d15b928243d55c2145404f0c6c31c0096926c6f;hb=706c5a4d353eeac4b3217138eeea6b737ff14681;hp=95e44c73fa6bb16cede079788d532b4f5e5e6af7;hpb=60b5245360a70f4b10a6c77aa0bf5ee04b2e7262;p=oweals%2Fopenssl.git diff --git a/doc/crypto/RSA_new.pod b/doc/crypto/RSA_new.pod index 95e44c73fa..3d15b92824 100644 --- a/doc/crypto/RSA_new.pod +++ b/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 structure. +RSA_new() allocates and initializes an B structure. It is equivalent to +calling RSA_new_method(NULL). RSA_free() frees the B structure and its components. The key is erased before the memory is returned to the system. @@ -22,14 +23,16 @@ erased before the memory is returned to the system. =head1 RETURN VALUES If the allocation fails, RSA_new() returns B and sets an error -code that can be obtained by ERR_get_error(3). Otherwise it returns +code that can be obtained by L. Otherwise it returns a pointer to the newly allocated structure. RSA_free() returns no value. =head1 SEE ALSO -err(3), rsa(3), RSA_generate_key(3) +L, L, +L, +L =head1 HISTORY