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       BN_bn2bin(3)
39
41       Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
42
43       Licensed under the OpenSSL license (the "License").  You may not use
44       this file except in compliance with the License.  You can obtain a copy
45       in the file LICENSE in the source distribution or at
46       <https://www.openssl.org/source/license.html>.
47
48
49
501.1.1q                            2022-07-21                      RSA_PRINT(3)
Impressum