diff options
author | jmc <> | 2016-11-06 16:56:46 +0000 |
---|---|---|
committer | jmc <> | 2016-11-06 16:56:46 +0000 |
commit | 6e1ed006025265aaf8271fa45e8f32e3fd5597f3 (patch) | |
tree | c36cd6bc8a3b0e53016ff27bf82b098357c85685 /src/lib/libcrypto/man/ASN1_generate_nconf.3 | |
parent | 8040a7483ddcf8dccda1702c21839b3bd23089fc (diff) | |
download | openbsd-6e1ed006025265aaf8271fa45e8f32e3fd5597f3.tar.gz openbsd-6e1ed006025265aaf8271fa45e8f32e3fd5597f3.tar.bz2 openbsd-6e1ed006025265aaf8271fa45e8f32e3fd5597f3.zip |
some minor cleanup;
Diffstat (limited to 'src/lib/libcrypto/man/ASN1_generate_nconf.3')
-rw-r--r-- | src/lib/libcrypto/man/ASN1_generate_nconf.3 | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/lib/libcrypto/man/ASN1_generate_nconf.3 b/src/lib/libcrypto/man/ASN1_generate_nconf.3 index 1fd7f38d26..39929782ee 100644 --- a/src/lib/libcrypto/man/ASN1_generate_nconf.3 +++ b/src/lib/libcrypto/man/ASN1_generate_nconf.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: ASN1_generate_nconf.3,v 1.5 2016/11/06 15:52:50 jmc Exp $ | 1 | .\" $OpenBSD: ASN1_generate_nconf.3,v 1.6 2016/11/06 16:56:46 jmc Exp $ |
2 | .\" | 2 | .\" |
3 | .Dd $Mdocdate: November 6 2016 $ | 3 | .Dd $Mdocdate: November 6 2016 $ |
4 | .Dt ASN1_GENERATE_NCONF 3 | 4 | .Dt ASN1_GENERATE_NCONF 3 |
@@ -6,7 +6,7 @@ | |||
6 | .Sh NAME | 6 | .Sh NAME |
7 | .Nm ASN1_generate_nconf , | 7 | .Nm ASN1_generate_nconf , |
8 | .Nm ASN1_generate_v3 | 8 | .Nm ASN1_generate_v3 |
9 | .Nd ASN1 generation functions | 9 | .Nd ASN.1 generation functions |
10 | .Sh SYNOPSIS | 10 | .Sh SYNOPSIS |
11 | .In openssl/asn1.h | 11 | .In openssl/asn1.h |
12 | .Ft ASN1_TYPE * | 12 | .Ft ASN1_TYPE * |
@@ -20,7 +20,7 @@ | |||
20 | .Fa "X509V3_CTX *cnf" | 20 | .Fa "X509V3_CTX *cnf" |
21 | .Fc | 21 | .Fc |
22 | .Sh DESCRIPTION | 22 | .Sh DESCRIPTION |
23 | These functions generate the ASN1 encoding of a string in an | 23 | These functions generate the ASN.1 encoding of a string in an |
24 | .Vt ASN1_TYPE | 24 | .Vt ASN1_TYPE |
25 | structure. | 25 | structure. |
26 | .Pp | 26 | .Pp |
@@ -93,7 +93,7 @@ The | |||
93 | .Ar value | 93 | .Ar value |
94 | string must not be present. | 94 | string must not be present. |
95 | .It Cm INTEGER , INT | 95 | .It Cm INTEGER , INT |
96 | Encodes an ASN1 INTEGER type. | 96 | Encodes an ASN.1 INTEGER type. |
97 | The | 97 | The |
98 | .Ar value | 98 | .Ar value |
99 | string represents the value of the integer. | 99 | string represents the value of the integer. |
@@ -102,24 +102,24 @@ and is normally interpreted as a decimal value unless the prefix | |||
102 | .Cm 0x | 102 | .Cm 0x |
103 | is included. | 103 | is included. |
104 | .It Cm ENUMERATED , ENUM | 104 | .It Cm ENUMERATED , ENUM |
105 | Encodes the ASN1 ENUMERATED type. | 105 | Encodes the ASN.1 ENUMERATED type. |
106 | It is otherwise identical to | 106 | It is otherwise identical to |
107 | .Cm INTEGER . | 107 | .Cm INTEGER . |
108 | .It Cm OBJECT , OID | 108 | .It Cm OBJECT , OID |
109 | Encodes an ASN1 OBJECT IDENTIFIER. | 109 | Encodes an ASN.1 OBJECT IDENTIFIER. |
110 | The | 110 | The |
111 | .Ar value | 111 | .Ar value |
112 | string can be a short name, a long name, or numerical format. | 112 | string can be a short name, a long name, or numerical format. |
113 | .It Cm UTCTIME , UTC | 113 | .It Cm UTCTIME , UTC |
114 | Encodes an ASN1 UTCTime structure. | 114 | Encodes an ASN.1 UTCTime structure. |
115 | The value should be in the format | 115 | The value should be in the format |
116 | .Ar YYMMDDHHMMSSZ . | 116 | .Ar YYMMDDHHMMSSZ . |
117 | .It Cm GENERALIZEDTIME , GENTIME | 117 | .It Cm GENERALIZEDTIME , GENTIME |
118 | Encodes an ASN1 GeneralizedTime structure. | 118 | Encodes an ASN.1 GeneralizedTime structure. |
119 | The value should be in the format | 119 | The value should be in the format |
120 | .Ar YYYYMMDDHHMMSSZ . | 120 | .Ar YYYYMMDDHHMMSSZ . |
121 | .It Cm OCTETSTRING , OCT | 121 | .It Cm OCTETSTRING , OCT |
122 | Encodes an ASN1 OCTET STRING. | 122 | Encodes an ASN.1 OCTET STRING. |
123 | .Ar value | 123 | .Ar value |
124 | represents the contents of this structure. | 124 | represents the contents of this structure. |
125 | The format strings | 125 | The format strings |
@@ -129,7 +129,7 @@ and | |||
129 | can be used to specify the format of | 129 | can be used to specify the format of |
130 | .Ar value . | 130 | .Ar value . |
131 | .It Cm BITSTRING , BITSTR | 131 | .It Cm BITSTRING , BITSTR |
132 | Encodes an ASN1 BIT STRING. | 132 | Encodes an ASN.1 BIT STRING. |
133 | .Ar value | 133 | .Ar value |
134 | represents the contents of this structure. | 134 | represents the contents of this structure. |
135 | The format strings | 135 | The format strings |
@@ -163,7 +163,7 @@ The format can be | |||
163 | or | 163 | or |
164 | .Cm UTF8 . | 164 | .Cm UTF8 . |
165 | .It Cm SEQUENCE , SEQ , SET | 165 | .It Cm SEQUENCE , SEQ , SET |
166 | Formats the result as an ASN1 SEQUENCE or SET type. | 166 | Formats the result as an ASN.1 SEQUENCE or SET type. |
167 | .Ar value | 167 | .Ar value |
168 | should be a section name which will contain the contents. | 168 | should be a section name which will contain the contents. |
169 | The field names in the section are ignored | 169 | The field names in the section are ignored |
@@ -215,7 +215,7 @@ If | |||
215 | .Cm UTF8 | 215 | .Cm UTF8 |
216 | is specified, then the | 216 | is specified, then the |
217 | .Ar value | 217 | .Ar value |
218 | string must be a valid UTF8 string. | 218 | string must be a valid UTF-8 string. |
219 | For | 219 | For |
220 | .Cm HEX , | 220 | .Cm HEX , |
221 | the output must be a set of hex digits. | 221 | the output must be a set of hex digits. |