Update all links so they will be rendered better.
[openssl.git] / doc / crypto / RSA_print.pod
1 =pod
2
3 =head1 NAME
4
5 RSA_print, RSA_print_fp, DHparams_print, DHparams_print_fp - Print
6 cryptographic parameters
7
8 =head1 SYNOPSIS
9
10  #include <openssl/rsa.h>
11
12  int RSA_print(BIO *bp, RSA *x, int offset);
13  int RSA_print_fp(FILE *fp, RSA *x, int offset);
14
15  #include <openssl/dsa.h>
16
17  int DSA_print(BIO *bp, DSA *x, int offset);
18  int DSA_print_fp(FILE *fp, DSA *x, int offset);
19
20  #include <openssl/dh.h>
21
22  int DHparams_print(BIO *bp, DH *x);
23  int DHparams_print_fp(FILE *fp, DH *x);
24
25 =head1 DESCRIPTION
26
27 A human-readable hexadecimal output of the components of the RSA
28 key, DSA key or DH parameters is printed to B<bp> or B<fp>.
29
30 The output lines are indented by B<offset> spaces.
31
32 =head1 RETURN VALUES
33
34 These functions return 1 on success, 0 on error.
35
36 =head1 SEE ALSO
37
38 L<dh(3)|dh(3)>, L<dsa(3)|dsa(3)>, L<rsa(3)|rsa(3)>, L<BN_bn2bin(3)|BN_bn2bin(3)>
39
40 =head1 HISTORY
41
42 RSA_print(), RSA_print_fp(), DSA_print(), DSA_print_fp(), DH_print(),
43 DH_print_fp() are available in all versions of SSLeay and OpenSSL.
44
45 =cut