1RSA_print(3)                        OpenSSL                       RSA_print(3)
2
3
4

NAME

6       RSA_print, RSA_print_fp, DSAparams_print, DSAparams_print_fp,
7       DSA_print, DSA_print_fp, DHparams_print, DHparams_print_fp - print
8       cryptographic parameters
9

SYNOPSIS

11        #include <openssl/rsa.h>
12
13        int RSA_print(BIO *bp, RSA *x, int offset);
14        int RSA_print_fp(FILE *fp, RSA *x, int offset);
15
16        #include <openssl/dsa.h>
17
18        int DSAparams_print(BIO *bp, DSA *x);
19        int DSAparams_print_fp(FILE *fp, DSA *x);
20        int DSA_print(BIO *bp, DSA *x, int offset);
21        int DSA_print_fp(FILE *fp, DSA *x, int offset);
22
23        #include <openssl/dh.h>
24
25        int DHparams_print(BIO *bp, DH *x);
26        int DHparams_print_fp(FILE *fp, DH *x);
27

DESCRIPTION

29       A human-readable hexadecimal output of the components of the RSA key,
30       DSA parameters or key or DH parameters is printed to bp or fp.
31
32       The output lines are indented by offset spaces.
33

RETURN VALUES

35       These functions return 1 on success, 0 on error.
36

SEE ALSO

38       dh(3), dsa(3), rsa(3), BN_bn2bin(3)
39

HISTORY

41       RSA_print(), RSA_print_fp(), DSA_print(), DSA_print_fp(), DH_print(),
42       DH_print_fp() are available in all versions of SSLeay and OpenSSL.
43       DSAparams_print() and DSAparams_print_fp() were added in SSLeay 0.8.
44
45
46
471.0.2o                            2020-08-01                      RSA_print(3)
Impressum