xref: /onnv-gate/usr/src/common/openssl/doc/crypto/d2i_X509_ALGOR.pod (revision 2175:b0b2f052a486)
1*2175Sjp161948=pod
2*2175Sjp161948
3*2175Sjp161948=head1 NAME
4*2175Sjp161948
5*2175Sjp161948d2i_X509_ALGOR, i2d_X509_ALGOR - AlgorithmIdentifier functions.
6*2175Sjp161948
7*2175Sjp161948=head1 SYNOPSIS
8*2175Sjp161948
9*2175Sjp161948 #include <openssl/x509.h>
10*2175Sjp161948
11*2175Sjp161948 X509_ALGOR *d2i_X509_ALGOR(X509_ALGOR **a, unsigned char **pp, long length);
12*2175Sjp161948 int i2d_X509_ALGOR(X509_ALGOR *a, unsigned char **pp);
13*2175Sjp161948
14*2175Sjp161948=head1 DESCRIPTION
15*2175Sjp161948
16*2175Sjp161948These functions decode and encode an B<X509_ALGOR> structure which is
17*2175Sjp161948equivalent to the B<AlgorithmIdentifier> structure.
18*2175Sjp161948
19*2175Sjp161948Othewise these behave in a similar way to d2i_X509() and i2d_X509()
20*2175Sjp161948described in the L<d2i_X509(3)|d2i_X509(3)> manual page.
21*2175Sjp161948
22*2175Sjp161948=head1 SEE ALSO
23*2175Sjp161948
24*2175Sjp161948L<d2i_X509(3)|d2i_X509(3)>
25*2175Sjp161948
26*2175Sjp161948=head1 HISTORY
27*2175Sjp161948
28*2175Sjp161948TBA
29*2175Sjp161948
30*2175Sjp161948=cut
31