diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/man/d2i_X509_NAME.3 | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/lib/libcrypto/man/d2i_X509_NAME.3 b/src/lib/libcrypto/man/d2i_X509_NAME.3 new file mode 100644 index 0000000000..b145bf5b58 --- /dev/null +++ b/src/lib/libcrypto/man/d2i_X509_NAME.3 | |||
@@ -0,0 +1,34 @@ | |||
1 | .Dd $Mdocdate: November 4 2016 $ | ||
2 | .Dt D2I_X509_NAME 3 | ||
3 | .Os | ||
4 | .Sh NAME | ||
5 | .Nm d2i_X509_NAME , | ||
6 | .Nm i2d_X509_NAME | ||
7 | .Nd X509_NAME encoding functions | ||
8 | .Sh SYNOPSIS | ||
9 | .In openssl/x509.h | ||
10 | .Ft X509_NAME * | ||
11 | .Fo d2i_X509_NAME | ||
12 | .Fa "X509_NAME **a" | ||
13 | .Fa "unsigned char **pp" | ||
14 | .Fa "long length" | ||
15 | .Fc | ||
16 | .Ft int | ||
17 | .Fo i2d_X509_NAME | ||
18 | .Fa "X509_NAME *a" | ||
19 | .Fa "unsigned char **pp" | ||
20 | .Fc | ||
21 | .Sh DESCRIPTION | ||
22 | These functions decode and encode an | ||
23 | .Vt X509_NAME | ||
24 | structure which is the same as the | ||
25 | .Sy Name | ||
26 | type defined in RFC2459 (and elsewhere) and used for example in | ||
27 | certificate subject and issuer names. | ||
28 | .Pp | ||
29 | Otherwise the functions behave in a way similar to | ||
30 | .Xr d2i_X509 3 | ||
31 | and | ||
32 | .Xr i2d_X509 3 . | ||
33 | .Sh SEE ALSO | ||
34 | .Xr d2i_X509 3 | ||