diff options
author | schwarze <> | 2016-11-04 10:17:17 +0000 |
---|---|---|
committer | schwarze <> | 2016-11-04 10:17:17 +0000 |
commit | 195fe5e91c60bd205043b4bea113abdff1c67bcc (patch) | |
tree | 1d15fe02d83a7ffb422ebe78c34ee1117da63e59 /src/lib/libcrypto/man/RSA_print.3 | |
parent | 00872265b9546fcf2d5795aa3a120c35142d268b (diff) | |
download | openbsd-195fe5e91c60bd205043b4bea113abdff1c67bcc.tar.gz openbsd-195fe5e91c60bd205043b4bea113abdff1c67bcc.tar.bz2 openbsd-195fe5e91c60bd205043b4bea113abdff1c67bcc.zip |
convert RSA manuals from pod to mdoc
Diffstat (limited to 'src/lib/libcrypto/man/RSA_print.3')
-rw-r--r-- | src/lib/libcrypto/man/RSA_print.3 | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/src/lib/libcrypto/man/RSA_print.3 b/src/lib/libcrypto/man/RSA_print.3 new file mode 100644 index 0000000000..986dce2eb4 --- /dev/null +++ b/src/lib/libcrypto/man/RSA_print.3 | |||
@@ -0,0 +1,91 @@ | |||
1 | .Dd $Mdocdate: November 4 2016 $ | ||
2 | .Dt RSA_PRINT 3 | ||
3 | .Os | ||
4 | .Sh NAME | ||
5 | .Nm RSA_print , | ||
6 | .Nm RSA_print_fp , | ||
7 | .Nm DSAparams_print , | ||
8 | .Nm DSAparams_print_fp , | ||
9 | .Nm DSA_print , | ||
10 | .Nm DSA_print_fp , | ||
11 | .Nm DHparams_print , | ||
12 | .Nm DHparams_print_fp | ||
13 | .Nd print cryptographic parameters | ||
14 | .Sh SYNOPSIS | ||
15 | .In openssl/rsa.h | ||
16 | .Ft int | ||
17 | .Fo RSA_print | ||
18 | .Fa "BIO *bp" | ||
19 | .Fa "RSA *x" | ||
20 | .Fa "int offset" | ||
21 | .Fc | ||
22 | .Ft int | ||
23 | .Fo RSA_print_fp | ||
24 | .Fa "FILE *fp" | ||
25 | .Fa "RSA *x" | ||
26 | .Fa "int offset" | ||
27 | .Fc | ||
28 | .In openssl/dsa.h | ||
29 | .Ft int | ||
30 | .Fo DSAparams_print | ||
31 | .Fa "BIO *bp" | ||
32 | .Fa "DSA *x" | ||
33 | .Fc | ||
34 | .Ft int | ||
35 | .Fo DSAparams_print_fp | ||
36 | .Fa "FILE *fp" | ||
37 | .Fa "DSA *x" | ||
38 | .Fc | ||
39 | .Ft int | ||
40 | .Fo DSA_print | ||
41 | .Fa "BIO *bp" | ||
42 | .Fa "DSA *x" | ||
43 | .Fa "int offset" | ||
44 | .Fc | ||
45 | .Ft int | ||
46 | .Fo DSA_print_fp | ||
47 | .Fa "FILE *fp" | ||
48 | .Fa "DSA *x" | ||
49 | .Fa "int offset" | ||
50 | .Fc | ||
51 | .In openssl/dh.h | ||
52 | .Ft int | ||
53 | .Fo DHparams_print | ||
54 | .Fa "BIO *bp" | ||
55 | .Fa "DH *x" | ||
56 | .Fc | ||
57 | .Ft int | ||
58 | .Fo DHparams_print_fp | ||
59 | .Fa "FILE *fp" | ||
60 | .Fa "DH *x" | ||
61 | .Fc | ||
62 | .Sh DESCRIPTION | ||
63 | A human-readable hexadecimal output of the components of the RSA key, | ||
64 | DSA parameters or key or DH parameters is printed to | ||
65 | .Fa bp | ||
66 | or | ||
67 | .Fa fp . | ||
68 | .Pp | ||
69 | The output lines are indented by | ||
70 | .Fa offset | ||
71 | spaces. | ||
72 | .Sh RETURN VALUES | ||
73 | These functions return 1 on success or 0 on error. | ||
74 | .Sh SEE ALSO | ||
75 | .Xr BN_bn2bin 3 , | ||
76 | .Xr dh 3 , | ||
77 | .Xr dsa 3 , | ||
78 | .Xr rsa 3 | ||
79 | .Sh HISTORY | ||
80 | .Fn RSA_print , | ||
81 | .Fn RSA_print_fp , | ||
82 | .Fn DSA_print , | ||
83 | .Fn DSA_print_fp , | ||
84 | .Fn DHparams_print , | ||
85 | and | ||
86 | .Fn DHparams_print_fp | ||
87 | are available in all versions of SSLeay and OpenSSL. | ||
88 | .Fn DSAparams_print | ||
89 | and | ||
90 | .Fn DSAparams_print_fp | ||
91 | were added in SSLeay 0.8. | ||