summaryrefslogtreecommitdiff
path: root/lib/libcrypto/man/X509_ATTRIBUTE_new.3
blob: cf978867f11a26e61dc92daab6b46a531f0d708c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
.\"	$OpenBSD: X509_ATTRIBUTE_new.3,v 1.6 2018/03/27 17:35:50 schwarze Exp $
.\"
.\" Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
.Dd $Mdocdate: March 27 2018 $
.Dt X509_ATTRIBUTE_NEW 3
.Os
.Sh NAME
.Nm X509_ATTRIBUTE_new ,
.Nm X509_ATTRIBUTE_free
.\" In the following line, "X.501" and "Attribute" are not typos.
.\" The "Attribute" type is defined in X.501, not in X.509.
.\" The type in called "Attribute" with capital "A", not "attribute".
.Nd generic X.501 Attribute
.Sh SYNOPSIS
.In openssl/x509.h
.Ft X509_ATTRIBUTE *
.Fn X509_ATTRIBUTE_new void
.Ft void
.Fn X509_ATTRIBUTE_free "X509_ATTRIBUTE *attr"
.Sh DESCRIPTION
In the X.501 standard, an
.Vt Attribute
is the fundamental ASN.1 data type used to represent any kind of
property of any kind of directory entry.
In OpenSSL, very few objects use it directly, most notably the
.Vt X509_REQ_INFO
object used for PKCS#10 certification requests described in
.Xr X509_REQ_new 3 ,
the
.Vt PKCS8_PRIV_KEY_INFO
object used for PKCS#8 private key information described in
.Xr PKCS8_PRIV_KEY_INFO_new 3 ,
and the
.Vt PKCS12_SAFEBAG
container object described in
.Xr PKCS12_SAFEBAG_new 3 .
.Pp
.Fn X509_ATTRIBUTE_new
allocates and initializes an empty
.Vt X509_ATTRIBUTE
object.
.Fn X509_ATTRIBUTE_free
frees
.Fa attr .
.Sh RETURN VALUES
.Fn X509_ATTRIBUTE_new
returns the new
.Vt X509_ATTRIBUTE
object or
.Dv NULL
if an error occurs.
.Sh SEE ALSO
.Xr d2i_X509_ATTRIBUTE 3 ,
.Xr PKCS12_SAFEBAG_new 3 ,
.Xr PKCS8_PRIV_KEY_INFO_new 3 ,
.Xr X509_EXTENSION_new 3 ,
.Xr X509_REQ_new 3
.Sh STANDARDS
.Bl -ohang
.It Xo
For the general definition of the
.Vt Attribute
data type:
.Xc
ITU-T Recommendation X.501, also known as ISO/IEC 9594-2:
Information Technology \(en Open Systems Interconnection \(en
The Directory: Models, section 8.2: Overall structure
.It For the specific definition in the context of certification requests:
RFC 2986: PKCS #10: Certification Request Syntax Specification,
section 4.1: CertificationRequestInfo
.It For the specific use in the context of private key information:
RFC 5208: Public-Key Cryptography Standards (PKCS) #8:
Private-Key Information Syntax Specification
.It For the specific definition in the context of PFX:
RFC 7292: PKCS #12: Personal Information Exchange Syntax,
section 4.2: The SafeBag Type
.El
.Sh HISTORY
.Fn X509_ATTRIBUTE_new
and
.Fn X509_ATTRIBUTE_free
first appeared in SSLeay 0.5.1 and have been available since
.Ox 2.4 .
.Sh BUGS
A data type designed to hold arbitrary data is an oxymoron.
.Pp
While it may occasionally be useful for abstract syntax specification
or for generic container objects, using it for the representation
of specific data in a specific data structure feels like dubious
design.
.Pp
Having two distinct data types to hold arbitrary data \(en
in this case,
.Vt X509_ATTRIBUTE
on the X.501 language level and
.Vt X509_EXTENSION
as described in
.Xr X509_EXTENSION_new 3
on the X.509 language level \(en feels even more questionable,
in particular considering that Attributes in certification requests
can be used to ask for Extensions in certificates.
.Pp
At the very least, the direct use of the low-level generic
.Vt X509_ATTRIBUTE
type in specific data types like certification requests or private
key information looks like a layering violation and appears to put
type safety into jeopardy.