diff options
| author | tb <> | 2024-09-02 07:43:07 +0000 |
|---|---|---|
| committer | tb <> | 2024-09-02 07:43:07 +0000 |
| commit | 0353c2420e7ddfd827f7cecd3efb92e49ea15a8c (patch) | |
| tree | 0d1860517e1e800c7016f1ee12da89e147ef2a60 | |
| parent | 81ce6a505fea7117abce9ac9ecf1b78e75ded133 (diff) | |
| download | openbsd-0353c2420e7ddfd827f7cecd3efb92e49ea15a8c.tar.gz openbsd-0353c2420e7ddfd827f7cecd3efb92e49ea15a8c.tar.bz2 openbsd-0353c2420e7ddfd827f7cecd3efb92e49ea15a8c.zip | |
Remove mention of the no longer public X509at_* functions
| -rw-r--r-- | src/lib/libcrypto/man/CMS_signed_add1_attr.3 | 35 |
1 files changed, 12 insertions, 23 deletions
diff --git a/src/lib/libcrypto/man/CMS_signed_add1_attr.3 b/src/lib/libcrypto/man/CMS_signed_add1_attr.3 index 4246ca2cb3..94e4f4d2ab 100644 --- a/src/lib/libcrypto/man/CMS_signed_add1_attr.3 +++ b/src/lib/libcrypto/man/CMS_signed_add1_attr.3 | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: CMS_signed_add1_attr.3,v 1.3 2024/01/22 14:00:13 tb Exp $ | 1 | .\" $OpenBSD: CMS_signed_add1_attr.3,v 1.4 2024/09/02 07:43:07 tb Exp $ |
| 2 | .\" | 2 | .\" |
| 3 | .\" Copyright (c) 2024 Job Snijders <job@openbsd.org> | 3 | .\" Copyright (c) 2024 Job Snijders <job@openbsd.org> |
| 4 | .\" Copyright (c) 2024 Theo Buehler <tb@openbsd.org> | 4 | .\" Copyright (c) 2024 Theo Buehler <tb@openbsd.org> |
| @@ -16,7 +16,7 @@ | |||
| 16 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 16 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 17 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 17 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 18 | .\" | 18 | .\" |
| 19 | .Dd $Mdocdate: January 22 2024 $ | 19 | .Dd $Mdocdate: September 2 2024 $ |
| 20 | .Dt CMS_SIGNED_ADD1_ATTR 3 | 20 | .Dt CMS_SIGNED_ADD1_ATTR 3 |
| 21 | .Os | 21 | .Os |
| 22 | .Sh NAME | 22 | .Sh NAME |
| @@ -176,29 +176,18 @@ a set of signed attributes in the | |||
| 176 | array and a set of unsigned attributes in the | 176 | array and a set of unsigned attributes in the |
| 177 | .Fa unsignedAttrs | 177 | .Fa unsignedAttrs |
| 178 | array. | 178 | array. |
| 179 | The functions in this manual are wrappers of the | ||
| 180 | .Fn X509at_* | ||
| 181 | functions. | ||
| 182 | All arguments except | ||
| 183 | .Fa si | ||
| 184 | are passed to | ||
| 185 | .Fn X509at_* . | ||
| 186 | The | 179 | The |
| 187 | .Fn CMS_signed_* | 180 | .Fn CMS_signed_* |
| 188 | and | 181 | and |
| 189 | .Fn CMS_unsigned_* | 182 | .Fn CMS_unsigned_* |
| 190 | functions are similar, except | 183 | functions are similar, except |
| 191 | .Fn CMS_signed_* | 184 | .Fn CMS_signed_* |
| 192 | calls | 185 | modifies the |
| 193 | .Fn X509at_* | 186 | .Vt CMS_SignerInfo |
| 194 | with the | ||
| 195 | .Em CMS_SignerInfo | ||
| 196 | object's set of signed attributes and | 187 | object's set of signed attributes and |
| 197 | .Fn CMS_unsigned_* | 188 | .Fn CMS_unsigned_* |
| 198 | calls | 189 | modifies the |
| 199 | .Fn X509at_* | 190 | .Vt CMS_SignerInfo |
| 200 | with the | ||
| 201 | .Em CMS_SignerInfo | ||
| 202 | object's set of unsigned attributes. | 191 | object's set of unsigned attributes. |
| 203 | For brevity only the | 192 | For brevity only the |
| 204 | .Fn CMS_signed_* | 193 | .Fn CMS_signed_* |
| @@ -218,10 +207,11 @@ allocating a new array if necessary. | |||
| 218 | and | 207 | and |
| 219 | .Fn CMS_signed_add1_attr_by_txt | 208 | .Fn CMS_signed_add1_attr_by_txt |
| 220 | create a new X.501 Attribute object using | 209 | create a new X.501 Attribute object using |
| 221 | .Xr X509at_add1_attr_by_NID 3 , | 210 | .Xr X509_ATTRIBUTE_create_by_NID 3 , |
| 222 | .Xr X509at_add1_attr_by_OBJ 3 , | 211 | .Xr X509_ATTRIBUTE_create_by_OBJ 3 , |
| 223 | and | 212 | or |
| 224 | .Xr X509at_add1_attr_by_txt 3 , | 213 | .Xr X509_ATTRIBUTE_create_by_txt 3 , |
| 214 | respectively, | ||
| 225 | and append it to the | 215 | and append it to the |
| 226 | .Fa signedAttrs | 216 | .Fa signedAttrs |
| 227 | array of | 217 | array of |
| @@ -356,8 +346,7 @@ return the number of array elements or \-1 on failure. | |||
| 356 | .Xr CMS_get0_SignerInfos 3 , | 346 | .Xr CMS_get0_SignerInfos 3 , |
| 357 | .Xr OBJ_nid2obj 3 , | 347 | .Xr OBJ_nid2obj 3 , |
| 358 | .Xr X509_ATTRIBUTE_create_by_OBJ 3 , | 348 | .Xr X509_ATTRIBUTE_create_by_OBJ 3 , |
| 359 | .Xr X509_ATTRIBUTE_new 3 , | 349 | .Xr X509_ATTRIBUTE_new 3 |
| 360 | .Xr X509at_add1_attr 3 | ||
| 361 | .Sh STANDARDS | 350 | .Sh STANDARDS |
| 362 | RFC 5652: Cryptographic Message Syntax (CMS) | 351 | RFC 5652: Cryptographic Message Syntax (CMS) |
| 363 | .Bl -dash -compact -offset indent | 352 | .Bl -dash -compact -offset indent |
