Update API to use (char *) for email addresses and hostnames
[openssl.git] / doc / crypto / RSA_size.pod
index 9af1c40f1a49170d9a6a1f6a311bbd31722f7e16..5b7f835f95d6dc01ecb6c5419761985d6eded98d 100644 (file)
@@ -2,13 +2,13 @@
 
 =head1 NAME
 
-RSA_size - Get RSA modulus size
+RSA_size - get RSA modulus size
 
 =head1 SYNOPSIS
 
  #include <openssl/rsa.h>
 
- int RSA_size(RSA *rsa);
+ int RSA_size(const RSA *rsa);
 
 =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.
 
-B<rsa->n> must not be B<NULL>.
+B<rsa-E<gt>n> must not be B<NULL>.
 
 =head1 RETURN VALUE
 
@@ -24,7 +24,7 @@ The size in bytes.
 
 =head1 SEE ALSO
 
-rsa(3)
+L<rsa(3)|rsa(3)>
 
 =head1 HISTORY