d2i_X509_NAME.pod revision 109998
1170530Ssam=pod
2170530Ssam
3170530Ssam=head1 NAME
4170530Ssam
5170530Ssamd2i_X509_NAME, i2d_X509_NAME - X509_NAME encoding functions
6170530Ssam
7170530Ssam=head1 SYNOPSIS
8170530Ssam
9170530Ssam #include <openssl/x509.h>
10170530Ssam
11170530Ssam X509_NAME *d2i_X509_NAME(X509_NAME **a, unsigned char **pp, long length);
12170530Ssam int i2d_X509_NAME(X509_NAME *a, unsigned char **pp);
13170530Ssam
14170530Ssam=head1 DESCRIPTION
15170530Ssam
16170530SsamThese functions decode and encode an B<X509_NAME> structure which is the
17170530Ssamthe same as the B<Name> type defined in RFC2459 (and elsewhere) and used
18170530Ssamfor example in certificate subject and issuer names.
19170530Ssam
20170530SsamOthewise the functions behave in a similar way to d2i_X509() and i2d_X509()
21170530Ssamdescribed in the L<d2i_X509(3)|d2i_X509(3)> manual page.
22170530Ssam
23170530Ssam=head1 SEE ALSO
24170530Ssam
25170530SsamL<d2i_X509(3)|d2i_X509(3)>
26170530Ssam
27170530Ssam=head1 HISTORY
28170530Ssam
29170530SsamTBA
30170530Ssam
31170530Ssam=cut
32170530Ssam