summaryrefslogtreecommitdiffstats
path: root/secure/lib/libcrypto/man/pem.3
diff options
context:
space:
mode:
Diffstat (limited to 'secure/lib/libcrypto/man/pem.3')
-rw-r--r--secure/lib/libcrypto/man/pem.310
1 files changed, 5 insertions, 5 deletions
diff --git a/secure/lib/libcrypto/man/pem.3 b/secure/lib/libcrypto/man/pem.3
index 0416c2d..056c02e 100644
--- a/secure/lib/libcrypto/man/pem.3
+++ b/secure/lib/libcrypto/man/pem.3
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Wed Feb 19 16:43:06 2003
+.\" Wed Mar 17 09:38:44 2004
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -138,7 +138,7 @@
.\" ======================================================================
.\"
.IX Title "pem 3"
-.TH pem 3 "0.9.7a" "2003-02-19" "OpenSSL"
+.TH pem 3 "0.9.7d" "2004-03-17" "OpenSSL"
.UC
.SH "NAME"
\&\s-1PEM\s0 \- \s-1PEM\s0 routines
@@ -531,7 +531,7 @@ Read a certificate in \s-1PEM\s0 format from a \s-1BIO:\s0
.PP
.Vb 6
\& X509 *x;
-\& x = PEM_read_bio(bp, NULL, 0, NULL);
+\& x = PEM_read_bio_X509(bp, NULL, 0, NULL);
\& if (x == NULL)
\& {
\& /* Error */
@@ -672,13 +672,13 @@ The \s-1PEM\s0 read routines in some versions of OpenSSL will not correctly reus
an existing structure. Therefore the following:
.PP
.Vb 1
-\& PEM_read_bio(bp, &x, 0, NULL);
+\& PEM_read_bio_X509(bp, &x, 0, NULL);
.Ve
where \fBx\fR already contains a valid certificate, may not work, whereas:
.PP
.Vb 2
\& X509_free(x);
-\& x = PEM_read_bio(bp, NULL, 0, NULL);
+\& x = PEM_read_bio_X509(bp, NULL, 0, NULL);
.Ve
is guaranteed to work.
.SH "RETURN CODES"
OpenPOWER on IntegriCloud