d2i_X509_REQ.pod 813 B

123456789101112131415161718192021222324252627282930313233343536
  1. =pod
  2. =head1 NAME
  3. d2i_X509_REQ, i2d_X509_REQ, d2i_X509_REQ_bio, d2i_X509_REQ_fp,
  4. i2d_X509_REQ_bio, i2d_X509_REQ_fp - PKCS#10 certificate request functions.
  5. =head1 SYNOPSIS
  6. #include <openssl/x509.h>
  7. X509_REQ *d2i_X509_REQ(X509_REQ **a, const unsigned char **pp, long length);
  8. int i2d_X509_REQ(X509_REQ *a, unsigned char **pp);
  9. X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **x);
  10. X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **x);
  11. int i2d_X509_REQ_bio(BIO *bp, X509_REQ *x);
  12. int i2d_X509_REQ_fp(FILE *fp, X509_REQ *x);
  13. =head1 DESCRIPTION
  14. These functions decode and encode a PKCS#10 certificate request.
  15. Othewise these behave in a similar way to d2i_X509() and i2d_X509()
  16. described in the L<d2i_X509(3)|d2i_X509(3)> manual page.
  17. =head1 SEE ALSO
  18. L<d2i_X509(3)|d2i_X509(3)>
  19. =head1 HISTORY
  20. TBA
  21. =cut