Ulf Möller | 2186cd8 | 2000-01-11 22:35:21 +0000 | [diff] [blame] | 1 | =pod |
| 2 | |
| 3 | =head1 NAME |
| 4 | |
Richard Levitte | 5e4a75e | 2002-11-29 14:21:54 +0000 | [diff] [blame] | 5 | RSA_print, RSA_print_fp, |
| 6 | DSAparams_print, DSAparams_print_fp, DSA_print, DSA_print_fp, |
| 7 | DHparams_print, DHparams_print_fp - print cryptographic parameters |
Ulf Möller | 2186cd8 | 2000-01-11 22:35:21 +0000 | [diff] [blame] | 8 | |
| 9 | =head1 SYNOPSIS |
| 10 | |
| 11 | #include <openssl/rsa.h> |
| 12 | |
| 13 | int RSA_print(BIO *bp, RSA *x, int offset); |
Ulf Möller | 2186cd8 | 2000-01-11 22:35:21 +0000 | [diff] [blame] | 14 | int RSA_print_fp(FILE *fp, RSA *x, int offset); |
| 15 | |
Ulf Möller | 223fc86 | 2000-01-24 01:20:39 +0000 | [diff] [blame] | 16 | #include <openssl/dsa.h> |
| 17 | |
Ulf Möller | 74235cc | 2000-01-30 22:16:47 +0000 | [diff] [blame] | 18 | int DSAparams_print(BIO *bp, DSA *x); |
| 19 | int DSAparams_print_fp(FILE *fp, DSA *x); |
Ulf Möller | 223fc86 | 2000-01-24 01:20:39 +0000 | [diff] [blame] | 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 | |
Ulf Möller | 2186cd8 | 2000-01-11 22:35:21 +0000 | [diff] [blame] | 28 | =head1 DESCRIPTION |
| 29 | |
Ulf Möller | 223fc86 | 2000-01-24 01:20:39 +0000 | [diff] [blame] | 30 | A human-readable hexadecimal output of the components of the RSA |
Ulf Möller | 74235cc | 2000-01-30 22:16:47 +0000 | [diff] [blame] | 31 | key, DSA parameters or key or DH parameters is printed to B<bp> or B<fp>. |
Ulf Möller | 223fc86 | 2000-01-24 01:20:39 +0000 | [diff] [blame] | 32 | |
| 33 | The output lines are indented by B<offset> spaces. |
Ulf Möller | 2186cd8 | 2000-01-11 22:35:21 +0000 | [diff] [blame] | 34 | |
| 35 | =head1 RETURN VALUES |
| 36 | |
Ulf Möller | 223fc86 | 2000-01-24 01:20:39 +0000 | [diff] [blame] | 37 | These functions return 1 on success, 0 on error. |
Ulf Möller | 2186cd8 | 2000-01-11 22:35:21 +0000 | [diff] [blame] | 38 | |
| 39 | =head1 SEE ALSO |
| 40 | |
Rich Salz | 9b86974 | 2015-08-17 15:21:33 -0400 | [diff] [blame] | 41 | L<dh(3)>, L<dsa(3)>, L<rsa(3)>, L<BN_bn2bin(3)> |
Ulf Möller | 2186cd8 | 2000-01-11 22:35:21 +0000 | [diff] [blame] | 42 | |
Rich Salz | e2f9261 | 2016-05-18 11:44:05 -0400 | [diff] [blame] | 43 | =head1 COPYRIGHT |
| 44 | |
| 45 | Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. |
| 46 | |
| 47 | Licensed under the OpenSSL license (the "License"). You may not use |
| 48 | this file except in compliance with the License. You can obtain a copy |
| 49 | in the file LICENSE in the source distribution or at |
| 50 | L<https://www.openssl.org/source/license.html>. |
| 51 | |
| 52 | =cut |