diff options
Diffstat (limited to 'src/lib/libcrypto/doc/d2i_RSAPublicKey.pod')
-rw-r--r-- | src/lib/libcrypto/doc/d2i_RSAPublicKey.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/doc/d2i_RSAPublicKey.pod b/src/lib/libcrypto/doc/d2i_RSAPublicKey.pod index 279b29c873..aa6078bcf6 100644 --- a/src/lib/libcrypto/doc/d2i_RSAPublicKey.pod +++ b/src/lib/libcrypto/doc/d2i_RSAPublicKey.pod | |||
@@ -11,21 +11,21 @@ d2i_Netscape_RSA - RSA public and private key encoding functions. | |||
11 | #include <openssl/rsa.h> | 11 | #include <openssl/rsa.h> |
12 | #include <openssl/x509.h> | 12 | #include <openssl/x509.h> |
13 | 13 | ||
14 | RSA * d2i_RSAPublicKey(RSA **a, unsigned char **pp, long length); | 14 | RSA * d2i_RSAPublicKey(RSA **a, const unsigned char **pp, long length); |
15 | 15 | ||
16 | int i2d_RSAPublicKey(RSA *a, unsigned char **pp); | 16 | int i2d_RSAPublicKey(RSA *a, unsigned char **pp); |
17 | 17 | ||
18 | RSA * d2i_RSA_PUBKEY(RSA **a, unsigned char **pp, long length); | 18 | RSA * d2i_RSA_PUBKEY(RSA **a, const unsigned char **pp, long length); |
19 | 19 | ||
20 | int i2d_RSA_PUBKEY(RSA *a, unsigned char **pp); | 20 | int i2d_RSA_PUBKEY(RSA *a, unsigned char **pp); |
21 | 21 | ||
22 | RSA * d2i_RSAPrivateKey(RSA **a, unsigned char **pp, long length); | 22 | RSA * d2i_RSAPrivateKey(RSA **a, const unsigned char **pp, long length); |
23 | 23 | ||
24 | int i2d_RSAPrivateKey(RSA *a, unsigned char **pp); | 24 | int i2d_RSAPrivateKey(RSA *a, unsigned char **pp); |
25 | 25 | ||
26 | int i2d_Netscape_RSA(RSA *a, unsigned char **pp, int (*cb)()); | 26 | int i2d_Netscape_RSA(RSA *a, unsigned char **pp, int (*cb)()); |
27 | 27 | ||
28 | RSA * d2i_Netscape_RSA(RSA **a, unsigned char **pp, long length, int (*cb)()); | 28 | RSA * d2i_Netscape_RSA(RSA **a, const unsigned char **pp, long length, int (*cb)()); |
29 | 29 | ||
30 | =head1 DESCRIPTION | 30 | =head1 DESCRIPTION |
31 | 31 | ||