1d2i_X509_NAME(3) OpenSSL d2i_X509_NAME(3)
2
3
4
6 d2i_X509_NAME, i2d_X509_NAME - X509_NAME encoding functions
7
9 #include <openssl/x509.h>
10
11 X509_NAME *d2i_X509_NAME(X509_NAME **a, unsigned char **pp, long length);
12 int i2d_X509_NAME(X509_NAME *a, unsigned char **pp);
13
15 These functions decode and encode an X509_NAME structure which is the
16 the same as the Name type defined in RFC2459 (and elsewhere) and used
17 for example in certificate subject and issuer names.
18
19 Othewise the functions behave in a similar way to d2i_X509() and
20 i2d_X509() described in the d2i_X509(3) manual page.
21
23 d2i_X509(3)
24
26 TBA
27
28
29
301.0.1e 2013-02-11 d2i_X509_NAME(3)