diff options
Diffstat (limited to 'src/lib/libcrypto/man/AUTHORITY_KEYID_new.3')
-rw-r--r-- | src/lib/libcrypto/man/AUTHORITY_KEYID_new.3 | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/src/lib/libcrypto/man/AUTHORITY_KEYID_new.3 b/src/lib/libcrypto/man/AUTHORITY_KEYID_new.3 deleted file mode 100644 index bff451ff36..0000000000 --- a/src/lib/libcrypto/man/AUTHORITY_KEYID_new.3 +++ /dev/null | |||
@@ -1,73 +0,0 @@ | |||
1 | .\" $OpenBSD: AUTHORITY_KEYID_new.3,v 1.4 2019/06/06 01:06:58 schwarze Exp $ | ||
2 | .\" | ||
3 | .\" Copyright (c) 2016 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: June 6 2019 $ | ||
18 | .Dt AUTHORITY_KEYID_NEW 3 | ||
19 | .Os | ||
20 | .Sh NAME | ||
21 | .Nm AUTHORITY_KEYID_new , | ||
22 | .Nm AUTHORITY_KEYID_free | ||
23 | .Nd X.509 authority key identifier extension | ||
24 | .Sh SYNOPSIS | ||
25 | .In openssl/x509v3.h | ||
26 | .Ft AUTHORITY_KEYID * | ||
27 | .Fn AUTHORITY_KEYID_new void | ||
28 | .Ft void | ||
29 | .Fn AUTHORITY_KEYID_free "AUTHORITY_KEYID *id" | ||
30 | .Sh DESCRIPTION | ||
31 | Using the authority key identifier extension, an X.509 certificate | ||
32 | or certificate revocation list can specify which key pair was used | ||
33 | for signing it. | ||
34 | .Pp | ||
35 | .Fn AUTHORITY_KEYID_new | ||
36 | allocates and initializes an empty | ||
37 | .Vt AUTHORITY_KEYID | ||
38 | object, representing an ASN.1 | ||
39 | .Vt AuthorityKeyIdentifier | ||
40 | structure defined in RFC 5280 section 4.2.1.1. | ||
41 | It can hold an issuer name, a serial number, and a key identifier. | ||
42 | .Pp | ||
43 | .Fn AUTHORITY_KEYID_free | ||
44 | frees | ||
45 | .Fa id . | ||
46 | .Sh RETURN VALUES | ||
47 | .Fn AUTHORITY_KEYID_new | ||
48 | returns the new | ||
49 | .Vt AUTHORITY_KEYID | ||
50 | object or | ||
51 | .Dv NULL | ||
52 | if an error occurs. | ||
53 | .Sh SEE ALSO | ||
54 | .Xr d2i_AUTHORITY_KEYID 3 , | ||
55 | .Xr GENERAL_NAMES_new 3 , | ||
56 | .Xr X509_CRL_new 3 , | ||
57 | .Xr X509_EXTENSION_new 3 , | ||
58 | .Xr X509_new 3 | ||
59 | .Sh STANDARDS | ||
60 | RFC 5280: Internet X.509 Public Key Infrastructure Certificate and | ||
61 | Certificate Revocation List (CRL) Profile: | ||
62 | .Bl -dash -compact | ||
63 | .It | ||
64 | section 4.2.1.1: Certificate Extensions: Authority Key Identifier | ||
65 | .It | ||
66 | section 5.2.1: CRL Extensions: Authority Key Identifier | ||
67 | .El | ||
68 | .Sh HISTORY | ||
69 | .Fn AUTHORITY_KEYID_new | ||
70 | and | ||
71 | .Fn AUTHORITY_KEYID_free | ||
72 | first appeared in OpenSSL 0.9.2b and have been available since | ||
73 | .Ox 2.6 . | ||