Add missing commas in pod files
[openssl.git] / doc / man3 / d2i_Netscape_RSA.pod
1 =pod
2
3 =head1 NAME
4
5 i2d_Netscape_RSA,
6 d2i_Netscape_RSA
7 - insecure RSA public and private key encoding functions
8
9 =head1 SYNOPSIS
10
11  #include <openssl/rsa.h>
12
13  int i2d_Netscape_RSA(RSA *a, unsigned char **pp, int (*cb)());
14  RSA * d2i_Netscape_RSA(RSA **a, const unsigned char **pp, long length, int (*cb)());
15
16 =head1 DESCRIPTION
17
18 These functions decode and encode an RSA private
19 key in NET format.  These functions are present to provide compatibility
20 with very old software. This format has some severe security weaknesses
21 and should be avoided if possible.
22
23 These functions are similar to the B<d2i_RSAPrivateKey> functions.
24
25 =head1 SEE ALSO
26
27 L<d2i_RSAPrivateKey(3)>
28
29 =head1 COPYRIGHT
30
31 Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
32
33 Licensed under the OpenSSL license (the "License").  You may not use
34 this file except in compliance with the License.  You can obtain a copy
35 in the file LICENSE in the source distribution or at
36 L<https://www.openssl.org/source/license.html>.
37
38 =cut