diff options
author | schwarze <> | 2016-11-04 15:29:03 +0000 |
---|---|---|
committer | schwarze <> | 2016-11-04 15:29:03 +0000 |
commit | e23d00ab37299e14c06d5d2b599a3793e3d0575c (patch) | |
tree | f91172cf4f459119421ea45c97eb6fa4aec563bc /src/lib/libcrypto/man/d2i_X509_ALGOR.3 | |
parent | f34ab28d6356aae4d0458dd2076438a042314790 (diff) | |
download | openbsd-e23d00ab37299e14c06d5d2b599a3793e3d0575c.tar.gz openbsd-e23d00ab37299e14c06d5d2b599a3793e3d0575c.tar.bz2 openbsd-e23d00ab37299e14c06d5d2b599a3793e3d0575c.zip |
convert X509 manuals from pod to mdoc
Diffstat (limited to 'src/lib/libcrypto/man/d2i_X509_ALGOR.3')
-rw-r--r-- | src/lib/libcrypto/man/d2i_X509_ALGOR.3 | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/lib/libcrypto/man/d2i_X509_ALGOR.3 b/src/lib/libcrypto/man/d2i_X509_ALGOR.3 new file mode 100644 index 0000000000..e17678019b --- /dev/null +++ b/src/lib/libcrypto/man/d2i_X509_ALGOR.3 | |||
@@ -0,0 +1,33 @@ | |||
1 | .Dd $Mdocdate: November 4 2016 $ | ||
2 | .Dt D2I_X509_ALGOR 3 | ||
3 | .Os | ||
4 | .Sh NAME | ||
5 | .Nm d2i_X509_ALGOR , | ||
6 | .Nm i2d_X509_ALGOR | ||
7 | .Nd AlgorithmIdentifier functions | ||
8 | .Sh SYNOPSIS | ||
9 | .In openssl/x509.h | ||
10 | .Ft X509_ALGOR * | ||
11 | .Fo d2i_X509_ALGOR | ||
12 | .Fa "X509_ALGOR **a" | ||
13 | .Fa "unsigned char **pp" | ||
14 | .Fa "long length" | ||
15 | .Fc | ||
16 | .Ft int | ||
17 | .Fo i2d_X509_ALGOR | ||
18 | .Fa "X509_ALGOR *a" | ||
19 | .Fa "unsigned char **pp" | ||
20 | .Fc | ||
21 | .Sh DESCRIPTION | ||
22 | These functions decode and encode an | ||
23 | .Vt X509_ALGOR | ||
24 | structure which is equivalent to the | ||
25 | .Sy AlgorithmIdentifier | ||
26 | structure. | ||
27 | .Pp | ||
28 | Otherwise these behave in a way similar to | ||
29 | .Xr d2i_X509 3 | ||
30 | and | ||
31 | .Xr i2d_X509 3 . | ||
32 | .Sh SEE ALSO | ||
33 | .Xr d2i_X509 3 | ||