xref: /onnv-gate/usr/src/common/openssl/doc/crypto/d2i_X509_NAME.pod (revision 2175:b0b2f052a486)
1*2175Sjp161948=pod
2*2175Sjp161948
3*2175Sjp161948=head1 NAME
4*2175Sjp161948
5*2175Sjp161948d2i_X509_NAME, i2d_X509_NAME - X509_NAME encoding functions
6*2175Sjp161948
7*2175Sjp161948=head1 SYNOPSIS
8*2175Sjp161948
9*2175Sjp161948 #include <openssl/x509.h>
10*2175Sjp161948
11*2175Sjp161948 X509_NAME *d2i_X509_NAME(X509_NAME **a, unsigned char **pp, long length);
12*2175Sjp161948 int i2d_X509_NAME(X509_NAME *a, unsigned char **pp);
13*2175Sjp161948
14*2175Sjp161948=head1 DESCRIPTION
15*2175Sjp161948
16*2175Sjp161948These functions decode and encode an B<X509_NAME> structure which is the
17*2175Sjp161948the same as the B<Name> type defined in RFC2459 (and elsewhere) and used
18*2175Sjp161948for example in certificate subject and issuer names.
19*2175Sjp161948
20*2175Sjp161948Othewise the functions behave in a similar way to d2i_X509() and i2d_X509()
21*2175Sjp161948described in the L<d2i_X509(3)|d2i_X509(3)> manual page.
22*2175Sjp161948
23*2175Sjp161948=head1 SEE ALSO
24*2175Sjp161948
25*2175Sjp161948L<d2i_X509(3)|d2i_X509(3)>
26*2175Sjp161948
27*2175Sjp161948=head1 HISTORY
28*2175Sjp161948
29*2175Sjp161948TBA
30*2175Sjp161948
31*2175Sjp161948=cut
32