~ubuntu-branches/ubuntu/precise/openssl098/precise

« back to all changes in this revision

Viewing changes to doc/crypto/d2i_X509_REQ.pod

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2011-03-23 19:50:31 UTC
  • Revision ID: james.westby@ubuntu.com-20110323195031-6h9crj4bymhhr8b8
Tags: upstream-0.9.8o
ImportĀ upstreamĀ versionĀ 0.9.8o

Show diffs side-by-side

added added

removed removed

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