X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=doc%2Fcrypto%2FRSA_new.pod;h=3d15b928243d55c2145404f0c6c31c0096926c6f;hb=e88c57773873240edd96732112fcbf5a407e4a90;hp=a5df37777f1fdce2d6c95a61e89ef6e51a9d2fb2;hpb=2186cd8ef1c4db86109af7a38182c2bd9ddbbb32;p=oweals%2Fopenssl.git diff --git a/doc/crypto/RSA_new.pod b/doc/crypto/RSA_new.pod index a5df37777f..3d15b92824 100644 --- a/doc/crypto/RSA_new.pod +++ b/doc/crypto/RSA_new.pod @@ -14,22 +14,25 @@ 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 erased returned to the system. +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