diff options
author | schwarze <> | 2021-12-09 19:05:09 +0000 |
---|---|---|
committer | schwarze <> | 2021-12-09 19:05:09 +0000 |
commit | 64eb2496bb8a3f7a1fd1311b12382eb860cce7c3 (patch) | |
tree | ab1116c76a324e17b057a3378d4e044a5be75542 /src | |
parent | f75de66365ca471effe3025748c0905c6ce780ea (diff) | |
download | openbsd-64eb2496bb8a3f7a1fd1311b12382eb860cce7c3.tar.gz openbsd-64eb2496bb8a3f7a1fd1311b12382eb860cce7c3.tar.bz2 openbsd-64eb2496bb8a3f7a1fd1311b12382eb860cce7c3.zip |
document V_ASN1_SEQUENCE and V_ASN1_SET
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/man/d2i_ASN1_SEQUENCE_ANY.3 | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/lib/libcrypto/man/d2i_ASN1_SEQUENCE_ANY.3 b/src/lib/libcrypto/man/d2i_ASN1_SEQUENCE_ANY.3 index 0c4b6d728c..654f0b1e6b 100644 --- a/src/lib/libcrypto/man/d2i_ASN1_SEQUENCE_ANY.3 +++ b/src/lib/libcrypto/man/d2i_ASN1_SEQUENCE_ANY.3 | |||
@@ -1,6 +1,6 @@ | |||
1 | .\" $OpenBSD: d2i_ASN1_SEQUENCE_ANY.3,v 1.2 2018/03/23 04:34:23 schwarze Exp $ | 1 | .\" $OpenBSD: d2i_ASN1_SEQUENCE_ANY.3,v 1.3 2021/12/09 19:05:09 schwarze Exp $ |
2 | .\" | 2 | .\" |
3 | .\" Copyright (c) 2017 Ingo Schwarze <schwarze@openbsd.org> | 3 | .\" Copyright (c) 2017, 2021 Ingo Schwarze <schwarze@openbsd.org> |
4 | .\" | 4 | .\" |
5 | .\" Permission to use, copy, modify, and distribute this software for any | 5 | .\" Permission to use, copy, modify, and distribute this software for any |
6 | .\" purpose with or without fee is hereby granted, provided that the above | 6 | .\" purpose with or without fee is hereby granted, provided that the above |
@@ -14,7 +14,7 @@ | |||
14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | .\" | 16 | .\" |
17 | .Dd $Mdocdate: March 23 2018 $ | 17 | .Dd $Mdocdate: December 9 2021 $ |
18 | .Dt D2I_ASN1_SEQUENCE_ANY 3 | 18 | .Dt D2I_ASN1_SEQUENCE_ANY 3 |
19 | .Os | 19 | .Os |
20 | .Sh NAME | 20 | .Sh NAME |
@@ -48,7 +48,12 @@ | |||
48 | .Fa "unsigned char **der_out" | 48 | .Fa "unsigned char **der_out" |
49 | .Fc | 49 | .Fc |
50 | .Sh DESCRIPTION | 50 | .Sh DESCRIPTION |
51 | These functions decode and encode ASN.1 sequences and sets. | 51 | These functions decode and encode ASN.1 sequences and sets, |
52 | which are also represented by the | ||
53 | .Dv V_ASN1_SEQUENCE | ||
54 | and | ||
55 | .Dv V_ASN1_SET | ||
56 | type identifier constants, respectively. | ||
52 | For details about the semantics, examples, caveats, and bugs, see | 57 | For details about the semantics, examples, caveats, and bugs, see |
53 | .Xr ASN1_item_d2i 3 . | 58 | .Xr ASN1_item_d2i 3 . |
54 | .Pp | 59 | .Pp |