PR: 1626
authorDr. Stephen Henson <steve@openssl.org>
Mon, 6 Apr 2009 15:16:41 +0000 (15:16 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Mon, 6 Apr 2009 15:16:41 +0000 (15:16 +0000)
Submitted by: Cerutti Pietro <pietro.cerutti@bfh.ch>

Fix manual page.

doc/crypto/d2i_RSAPublicKey.pod

index 279b29c873c05b0251a69241e1aef839ded73d34..aa6078bcf6b7adf81d3289033b7c5196f4e4f970 100644 (file)
@@ -11,21 +11,21 @@ d2i_Netscape_RSA - RSA public and private key encoding functions.
  #include <openssl/rsa.h>
  #include <openssl/x509.h>
 
- RSA * d2i_RSAPublicKey(RSA **a, unsigned char **pp, long length);
+ RSA * d2i_RSAPublicKey(RSA **a, const unsigned char **pp, long length);
 
  int i2d_RSAPublicKey(RSA *a, unsigned char **pp);
 
- RSA * d2i_RSA_PUBKEY(RSA **a, unsigned char **pp, long length);
+ RSA * d2i_RSA_PUBKEY(RSA **a, const unsigned char **pp, long length);
 
  int i2d_RSA_PUBKEY(RSA *a, unsigned char **pp);
 
- RSA * d2i_RSAPrivateKey(RSA **a, unsigned char **pp, long length);
+ RSA * d2i_RSAPrivateKey(RSA **a, const unsigned char **pp, long length);
 
  int i2d_RSAPrivateKey(RSA *a, unsigned char **pp);
 
  int i2d_Netscape_RSA(RSA *a, unsigned char **pp, int (*cb)());
 
- RSA * d2i_Netscape_RSA(RSA **a, unsigned char **pp, long length, int (*cb)());
+ RSA * d2i_Netscape_RSA(RSA **a, const unsigned char **pp, long length, int (*cb)());
 
 =head1 DESCRIPTION