diff options
author | schwarze <> | 2016-12-14 16:53:32 +0000 |
---|---|---|
committer | schwarze <> | 2016-12-14 16:53:32 +0000 |
commit | b65c38f6a72334eac04f7af9e996cb23771f54f3 (patch) | |
tree | f0759b868b301e36994e34709cd2080d65ee310f /src/lib | |
parent | 4aa7f598ee869de91c40fa1431d57e95b37617fe (diff) | |
download | openbsd-b65c38f6a72334eac04f7af9e996cb23771f54f3.tar.gz openbsd-b65c38f6a72334eac04f7af9e996cb23771f54f3.tar.bz2 openbsd-b65c38f6a72334eac04f7af9e996cb23771f54f3.zip |
Clarify X509_NAME stuff and cut back excessive references.
Ultimately, this page will have to be merged into X509_new(3),
but we're not quite ready for that just yet.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/man/x509.3 | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/src/lib/libcrypto/man/x509.3 b/src/lib/libcrypto/man/x509.3 index 51650ca074..3f53a4efaf 100644 --- a/src/lib/libcrypto/man/x509.3 +++ b/src/lib/libcrypto/man/x509.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: x509.3,v 1.5 2016/12/12 22:02:55 jmc Exp $ | 1 | .\" $OpenBSD: x509.3,v 1.6 2016/12/14 16:53:32 schwarze Exp $ |
2 | .\" OpenSSL a9c85cea Nov 11 09:33:55 2016 +0100 | 2 | .\" OpenSSL a9c85cea Nov 11 09:33:55 2016 +0100 |
3 | .\" | 3 | .\" |
4 | .\" This file was written by Richard Levitte <levitte@openssl.org> | 4 | .\" This file was written by Richard Levitte <levitte@openssl.org> |
@@ -48,7 +48,7 @@ | |||
48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
50 | .\" | 50 | .\" |
51 | .Dd $Mdocdate: December 12 2016 $ | 51 | .Dd $Mdocdate: December 14 2016 $ |
52 | .Dt X509 3 | 52 | .Dt X509 3 |
53 | .Os | 53 | .Os |
54 | .Sh NAME | 54 | .Sh NAME |
@@ -77,7 +77,7 @@ is used to express such a certificate request. | |||
77 | .Pp | 77 | .Pp |
78 | To handle some complex parts of a certificate, there are the types | 78 | To handle some complex parts of a certificate, there are the types |
79 | .Vt X509_NAME | 79 | .Vt X509_NAME |
80 | to express a certificate name, | 80 | to express a certificate or issuer name, |
81 | .Vt X509_ATTRIBUTE | 81 | .Vt X509_ATTRIBUTE |
82 | to express a certificate attribute, | 82 | to express a certificate attribute, |
83 | .Vt X509_EXTENSION | 83 | .Vt X509_EXTENSION |
@@ -106,8 +106,10 @@ and | |||
106 | .Fa i2d_X509_REQ_* | 106 | .Fa i2d_X509_REQ_* |
107 | handle PKCS#10 certificate requests. | 107 | handle PKCS#10 certificate requests. |
108 | .Pp | 108 | .Pp |
109 | .Fa X509_NAME_* | 109 | The functions documented in |
110 | handle certificate names. | 110 | .Xr X509_NAME_new 3 |
111 | and in the manual pages referenced from there handle certificate | ||
112 | and issuer names. | ||
111 | .Pp | 113 | .Pp |
112 | .Fa X509_ATTRIBUTE_* | 114 | .Fa X509_ATTRIBUTE_* |
113 | handle certificate attributes. | 115 | handle certificate attributes. |
@@ -119,11 +121,6 @@ handle certificate extensions. | |||
119 | .Xr d2i_X509 3 , | 121 | .Xr d2i_X509 3 , |
120 | .Xr d2i_X509_ALGOR 3 , | 122 | .Xr d2i_X509_ALGOR 3 , |
121 | .Xr d2i_X509_CRL 3 , | 123 | .Xr d2i_X509_CRL 3 , |
122 | .Xr d2i_X509_NAME 3 , | ||
123 | .Xr d2i_X509_REQ 3 , | 124 | .Xr d2i_X509_REQ 3 , |
124 | .Xr d2i_X509_SIG 3 , | 125 | .Xr d2i_X509_SIG 3 , |
125 | .Xr X509_NAME_add_entry_by_NID 3 , | 126 | .Xr X509_NAME_new 3 |
126 | .Xr X509_NAME_add_entry_by_txt 3 , | ||
127 | .Xr X509_NAME_ENTRY_get_object 3 , | ||
128 | .Xr X509_NAME_new 3 , | ||
129 | .Xr X509_NAME_print_ex 3 | ||