Rename new BIO_set_shutdown_wr macro to just BIO_shutdown_wr
[openssl.git] / doc / crypto / d2i_RSAPublicKey.pod
1 =pod
2
3 =head1 NAME
4
5 d2i_RSAPublicKey, i2d_RSAPublicKey, d2i_RSAPrivateKey, i2d_RSAPrivateKey, i2d_Netscape_RSA, d2i_Netscape_RSA - ...
6
7 =head1 SYNOPSIS
8
9  #include <openssl/rsa.h>
10
11  RSA * d2i_RSAPublicKey(RSA **a, unsigned char **pp, long length);
12
13  int i2d_RSAPublicKey(RSA *a, unsigned char **pp);
14
15  RSA * d2i_RSAPrivateKey(RSA **a, unsigned char **pp, long length);
16
17  int i2d_RSAPrivateKey(RSA *a, unsigned char **pp);
18
19  int i2d_Netscape_RSA(RSA *a, unsigned char **pp, int (*cb)());
20
21  RSA * d2i_Netscape_RSA(RSA **a, unsigned char **pp, long length, int (*cb)());
22
23 =head1 DESCRIPTION
24
25 ...
26
27 =head1 RETURN VALUES
28
29 ...
30
31 =head1 SEE ALSO
32
33 ...
34
35 =head1 HISTORY
36
37 ...
38
39 =cut