diff options
author | schwarze <> | 2016-11-05 13:36:33 +0000 |
---|---|---|
committer | schwarze <> | 2016-11-05 13:36:33 +0000 |
commit | 71b431bd059aaefaa67b54a34adfaadc4014902c (patch) | |
tree | 7bf60aef63735e9638d12b0d8302b14d9860466e /src/lib/libcrypto/man/d2i_DHparams.3 | |
parent | 5074288f0801a2b426584402e81b5953f706a44f (diff) | |
download | openbsd-71b431bd059aaefaa67b54a34adfaadc4014902c.tar.gz openbsd-71b431bd059aaefaa67b54a34adfaadc4014902c.tar.bz2 openbsd-71b431bd059aaefaa67b54a34adfaadc4014902c.zip |
convert the remaining manual pages from pod to mdoc
Diffstat (limited to 'src/lib/libcrypto/man/d2i_DHparams.3')
-rw-r--r-- | src/lib/libcrypto/man/d2i_DHparams.3 | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/lib/libcrypto/man/d2i_DHparams.3 b/src/lib/libcrypto/man/d2i_DHparams.3 new file mode 100644 index 0000000000..73aec0269b --- /dev/null +++ b/src/lib/libcrypto/man/d2i_DHparams.3 | |||
@@ -0,0 +1,30 @@ | |||
1 | .Dd $Mdocdate: November 5 2016 $ | ||
2 | .Dt D2I_DHPARAMS 3 | ||
3 | .Os | ||
4 | .Sh NAME | ||
5 | .Nm d2i_DHparams , | ||
6 | .Nm i2d_DHparams | ||
7 | .Nd PKCS#3 DH parameter functions | ||
8 | .Sh SYNOPSIS | ||
9 | .In openssl/dh.h | ||
10 | .Ft DH * | ||
11 | .Fo d2i_DHparams | ||
12 | .Fa "DH **a" | ||
13 | .Fa "unsigned char **pp" | ||
14 | .Fa "long length" | ||
15 | .Fc | ||
16 | .Ft int | ||
17 | .Fo i2d_DHparams | ||
18 | .Fa "DH *a" | ||
19 | .Fa "unsigned char **pp" | ||
20 | .Fc | ||
21 | .Sh DESCRIPTION | ||
22 | These functions decode and encode PKCS#3 DH parameters using the | ||
23 | DHparameter structure described in PKCS#3. | ||
24 | .Pp | ||
25 | Otherwise these behave in a way similar to | ||
26 | .Xr d2i_X509 3 | ||
27 | and | ||
28 | .Xr i2d_X509 3 . | ||
29 | .Sh SEE ALSO | ||
30 | .Xr d2i_X509 3 | ||