summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/doc/PEM_read_bio_PrivateKey.pod
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/doc/PEM_read_bio_PrivateKey.pod')
-rw-r--r--src/lib/libcrypto/doc/PEM_read_bio_PrivateKey.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/doc/PEM_read_bio_PrivateKey.pod b/src/lib/libcrypto/doc/PEM_read_bio_PrivateKey.pod
index 54414a3f6f..e196bf1498 100644
--- a/src/lib/libcrypto/doc/PEM_read_bio_PrivateKey.pod
+++ b/src/lib/libcrypto/doc/PEM_read_bio_PrivateKey.pod
@@ -250,7 +250,7 @@ structure. They will also process a trusted X509 certificate but
250any trust settings are discarded. 250any trust settings are discarded.
251 251
252The B<X509_AUX> functions process a trusted X509 certificate using 252The B<X509_AUX> functions process a trusted X509 certificate using
253an X509 structure. 253an X509 structure.
254 254
255The B<X509_REQ> and B<X509_REQ_NEW> functions process a PKCS#10 255The B<X509_REQ> and B<X509_REQ_NEW> functions process a PKCS#10
256certificate request using an X509_REQ structure. The B<X509_REQ> 256certificate request using an X509_REQ structure. The B<X509_REQ>
@@ -435,7 +435,7 @@ which is an uninitialised pointer.
435 435
436This old B<PrivateKey> routines use a non standard technique for encryption. 436This old B<PrivateKey> routines use a non standard technique for encryption.
437 437
438The private key (or other data) takes the following form: 438The private key (or other data) takes the following form:
439 439
440 -----BEGIN RSA PRIVATE KEY----- 440 -----BEGIN RSA PRIVATE KEY-----
441 Proc-Type: 4,ENCRYPTED 441 Proc-Type: 4,ENCRYPTED
@@ -461,7 +461,7 @@ an existing structure. Therefore the following:
461 461
462 PEM_read_bio_X509(bp, &x, 0, NULL); 462 PEM_read_bio_X509(bp, &x, 0, NULL);
463 463
464where B<x> already contains a valid certificate, may not work, whereas: 464where B<x> already contains a valid certificate, may not work, whereas:
465 465
466 X509_free(x); 466 X509_free(x);
467 x = PEM_read_bio_X509(bp, NULL, 0, NULL); 467 x = PEM_read_bio_X509(bp, NULL, 0, NULL);