Provide documentation for all SSL(_CTX)?_(get|set)(_default)?_read_ahead
[openssl.git] / doc / crypto / RSA_size.pod
index 9af1c40f1a49170d9a6a1f6a311bbd31722f7e16..5b7f835f95d6dc01ecb6c5419761985d6eded98d 100644 (file)
@@ -2,13 +2,13 @@
 
 =head1 NAME
 
 
 =head1 NAME
 
-RSA_size - Get RSA modulus size
+RSA_size - get RSA modulus size
 
 =head1 SYNOPSIS
 
  #include <openssl/rsa.h>
 
 
 =head1 SYNOPSIS
 
  #include <openssl/rsa.h>
 
- int RSA_size(RSA *rsa);
+ int RSA_size(const RSA *rsa);
 
 =head1 DESCRIPTION
 
 
 =head1 DESCRIPTION
 
@@ -16,7 +16,7 @@ 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.
 
 determine how much memory must be allocated for an RSA encrypted
 value.
 
-B<rsa->n> must not be B<NULL>.
+B<rsa-E<gt>n> must not be B<NULL>.
 
 =head1 RETURN VALUE
 
 
 =head1 RETURN VALUE
 
@@ -24,7 +24,7 @@ The size in bytes.
 
 =head1 SEE ALSO
 
 
 =head1 SEE ALSO
 
-rsa(3)
+L<rsa(3)|rsa(3)>
 
 =head1 HISTORY
 
 
 =head1 HISTORY