diff options
Diffstat (limited to 'src/lib/libcrypto/man/d2i_X509_ALGOR.3')
-rw-r--r-- | src/lib/libcrypto/man/d2i_X509_ALGOR.3 | 89 |
1 files changed, 0 insertions, 89 deletions
diff --git a/src/lib/libcrypto/man/d2i_X509_ALGOR.3 b/src/lib/libcrypto/man/d2i_X509_ALGOR.3 deleted file mode 100644 index 252f3fc344..0000000000 --- a/src/lib/libcrypto/man/d2i_X509_ALGOR.3 +++ /dev/null | |||
@@ -1,89 +0,0 @@ | |||
1 | .\" $OpenBSD: d2i_X509_ALGOR.3,v 1.11 2025/03/14 21:32:15 tb Exp $ | ||
2 | .\" | ||
3 | .\" Copyright (c) 2016, 2021 Ingo Schwarze <schwarze@openbsd.org> | ||
4 | .\" | ||
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 | ||
7 | .\" copyright notice and this permission notice appear in all copies. | ||
8 | .\" | ||
9 | .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
10 | .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
11 | .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
12 | .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
13 | .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
14 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
15 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
16 | .\" | ||
17 | .Dd $Mdocdate: March 14 2025 $ | ||
18 | .Dt D2I_X509_ALGOR 3 | ||
19 | .Os | ||
20 | .Sh NAME | ||
21 | .Nm d2i_X509_ALGOR , | ||
22 | .Nm i2d_X509_ALGOR , | ||
23 | .Nm d2i_X509_ALGORS , | ||
24 | .Nm i2d_X509_ALGORS | ||
25 | .Nd decode and encode algorithm identifiers | ||
26 | .Sh SYNOPSIS | ||
27 | .In openssl/x509.h | ||
28 | .Ft X509_ALGOR * | ||
29 | .Fo d2i_X509_ALGOR | ||
30 | .Fa "X509_ALGOR **val_out" | ||
31 | .Fa "const unsigned char **der_in" | ||
32 | .Fa "long length" | ||
33 | .Fc | ||
34 | .Ft int | ||
35 | .Fo i2d_X509_ALGOR | ||
36 | .Fa "X509_ALGOR *val_in" | ||
37 | .Fa "unsigned char **der_out" | ||
38 | .Fc | ||
39 | .Ft X509_ALGORS * | ||
40 | .Fo d2i_X509_ALGORS | ||
41 | .Fa "X509_ALGORS **val_out" | ||
42 | .Fa "const unsigned char **der_in" | ||
43 | .Fa "long length" | ||
44 | .Fc | ||
45 | .Ft int | ||
46 | .Fo i2d_X509_ALGORS | ||
47 | .Fa "X509_ALGORS *val_in" | ||
48 | .Fa "unsigned char **der_out" | ||
49 | .Fc | ||
50 | .Sh DESCRIPTION | ||
51 | .Fn d2i_X509_ALGOR | ||
52 | and | ||
53 | .Fn i2d_X509_ALGOR | ||
54 | decode and encode an ASN.1 | ||
55 | .Vt AlgorithmIdentifier | ||
56 | structure defined in RFC 5280 section 4.1.1.2. | ||
57 | .Pp | ||
58 | .Fn d2i_X509_ALGORS | ||
59 | and | ||
60 | .Fn i2d_X509_ALGORS | ||
61 | decode and encode an ASN.1 sequence of | ||
62 | .Vt AlgorithmIdentifier | ||
63 | structures. | ||
64 | The data type | ||
65 | .Vt X509_ALGORS | ||
66 | is defined as | ||
67 | .Vt STACK_OF(X509_ALGOR) . | ||
68 | .Pp | ||
69 | For details about the semantics, examples, caveats, and bugs, see | ||
70 | .Xr ASN1_item_d2i 3 . | ||
71 | .Sh SEE ALSO | ||
72 | .Xr ASN1_item_d2i 3 , | ||
73 | .Xr STACK_OF 3 , | ||
74 | .Xr X509_ALGOR_new 3 | ||
75 | .Sh STANDARDS | ||
76 | RFC 5280: Internet X.509 Public Key Infrastructure Certificate and | ||
77 | Certificate Revocation List (CRL) Profile | ||
78 | .Sh HISTORY | ||
79 | .Fn d2i_X509_ALGOR | ||
80 | and | ||
81 | .Fn i2d_X509_ALGOR | ||
82 | first appeared in SSLeay 0.5.1 and have been available since | ||
83 | .Ox 2.4 . | ||
84 | .Pp | ||
85 | .Fn d2i_X509_ALGORS | ||
86 | and | ||
87 | .Fn i2d_X509_ALGORS | ||
88 | first appeared in OpenSSL 0.9.8h and have been available since | ||
89 | .Ox 4.5 . | ||