d2i_ASN1_OBJECT.pod 555 B

1234567891011121314151617181920212223242526272829
  1. =pod
  2. =head1 NAME
  3. d2i_ASN1_OBJECT, i2d_ASN1_OBJECT - ASN1 OBJECT IDENTIFIER functions
  4. =head1 SYNOPSIS
  5. #include <openssl/objects.h>
  6. ASN1_OBJECT *d2i_ASN1_OBJECT(ASN1_OBJECT **a, unsigned char **pp, long length);
  7. int i2d_ASN1_OBJECT(ASN1_OBJECT *a, unsigned char **pp);
  8. =head1 DESCRIPTION
  9. These functions decode and encode an ASN1 OBJECT IDENTIFIER.
  10. Othewise these behave in a similar way to d2i_X509() and i2d_X509()
  11. described in the L<d2i_X509(3)|d2i_X509(3)> manual page.
  12. =head1 SEE ALSO
  13. L<d2i_X509(3)|d2i_X509(3)>
  14. =head1 HISTORY
  15. TBA
  16. =cut