2002-10-09 17:19:59 +00:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
d2i_X509_NAME, i2d_X509_NAME - X509_NAME encoding functions
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
#include <openssl/x509.h>
|
|
|
|
|
|
|
|
X509_NAME *d2i_X509_NAME(X509_NAME **a, unsigned char **pp, long length);
|
|
|
|
int i2d_X509_NAME(X509_NAME *a, unsigned char **pp);
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
These functions decode and encode an B<X509_NAME> structure which is the
|
2015-10-08 12:40:42 +00:00
|
|
|
same as the B<Name> type defined in RFC2459 (and elsewhere) and used
|
2002-10-09 17:19:59 +00:00
|
|
|
for example in certificate subject and issuer names.
|
|
|
|
|
2015-04-13 18:05:13 +00:00
|
|
|
Otherwise the functions behave in a similar way to d2i_X509() and i2d_X509()
|
2015-08-17 19:21:33 +00:00
|
|
|
described in the L<d2i_X509(3)> manual page.
|
2002-10-09 17:19:59 +00:00
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2015-08-17 19:21:33 +00:00
|
|
|
L<d2i_X509(3)>
|
2002-10-09 17:19:59 +00:00
|
|
|
|
|
|
|
=head1 HISTORY
|
|
|
|
|
|
|
|
TBA
|
|
|
|
|
|
|
|
=cut
|