summaryrefslogtreecommitdiff
path: root/lib/libcrypto/man/d2i_PKCS12.3
blob: 55272d1f363d924818c5937039243675da09d8ba (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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
.\"	$OpenBSD: d2i_PKCS12.3,v 1.2 2018/03/21 17:57:48 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 21 2018 $
.Dt D2I_PKCS12 3
.Os
.Sh NAME
.Nm d2i_PKCS12 ,
.Nm i2d_PKCS12 ,
.Nm d2i_PKCS12_bio ,
.Nm i2d_PKCS12_bio ,
.Nm d2i_PKCS12_fp ,
.Nm i2d_PKCS12_fp ,
.Nm d2i_PKCS12_MAC_DATA ,
.Nm i2d_PKCS12_MAC_DATA ,
.Nm d2i_PKCS12_SAFEBAG ,
.Nm i2d_PKCS12_SAFEBAG ,
.Nm d2i_PKCS12_BAGS ,
.Nm i2d_PKCS12_BAGS
.Nd decode and encode PKCS#12 structures
.Sh SYNOPSIS
.In openssl/pkcs12.h
.Ft PKCS12 *
.Fo d2i_PKCS12
.Fa "PKCS12 **val_out"
.Fa "const unsigned char **der_in"
.Fa "long length"
.Fc
.Ft int
.Fo i2d_PKCS12
.Fa "PKCS12 *val_in"
.Fa "unsigned char **der_out"
.Fc
.Ft PKCS12 *
.Fo d2i_PKCS12_bio
.Fa "BIO *in_bio"
.Fa "PKCS12 **val_out"
.Fc
.Ft int
.Fo i2d_PKCS12_bio
.Fa "BIO *out_bio"
.Fa "PKCS12 *val_in"
.Fc
.Ft PKCS12 *
.Fo d2i_PKCS12_fp
.Fa "FILE *in_fp"
.Fa "PKCS12 **val_out"
.Fc
.Ft int
.Fo i2d_PKCS12_fp
.Fa "FILE *out_fp"
.Fa "PKCS12 *val_in"
.Fc
.Ft PKCS12_MAC_DATA *
.Fo d2i_PKCS12_MAC_DATA
.Fa "PKCS12_MAC_DATA **val_out"
.Fa "const unsigned char **der_in"
.Fa "long length"
.Fc
.Ft int
.Fo i2d_PKCS12_MAC_DATA
.Fa "PKCS12_MAC_DATA *val_in"
.Fa "unsigned char **der_out"
.Fc
.Ft PKCS12_SAFEBAG *
.Fo d2i_PKCS12_SAFEBAG
.Fa "PKCS12_SAFEBAG **val_out"
.Fa "const unsigned char **der_in"
.Fa "long length"
.Fc
.Ft int
.Fo i2d_PKCS12_SAFEBAG
.Fa "PKCS12_SAFEBAG *val_in"
.Fa "unsigned char **der_out"
.Fc
.Ft PKCS12_BAGS *
.Fo d2i_PKCS12_BAGS
.Fa "PKCS12_BAGS **val_out"
.Fa "const unsigned char **der_in"
.Fa "long length"
.Fc
.Ft int
.Fo i2d_PKCS12_BAGS
.Fa "PKCS12_BAGS *val_in"
.Fa "unsigned char **der_out"
.Fc
.Sh DESCRIPTION
These functions decode and encode PKCS#12 structures.
For details about the semantics, examples, caveats, and bugs, see
.Xr ASN1_item_d2i 3 .
.Pp
.Fn d2i_PKCS12
and
.Fn i2d_PKCS12
decode and encode an ASN.1
.Vt PFX
.Pq personal information exchange
structure defined in RFC 7292 section 4.
.Fn d2i_PKCS12_bio ,
.Fn i2d_PKCS12_bio ,
.Fn d2i_PKCS12_fp ,
and
.Fn i2d_PKCS12_fp
are similar except that they decode or encode using a
.Vt BIO
or
.Vt FILE
pointer.
.Pp
.Fn d2i_PKCS12_MAC_DATA
and
.Fn i2d_PKCS12_MAC_DATA
decode and encode an ASN.1
.Vt MacData
structure defined in RFC 7292 section 4.
.Pp
.Fn d2i_PKCS12_SAFEBAG
and
.Fn i2d_PKCS12_SAFEBAG
decode and encode an ASN.1
.Vt SafeBag
structure defined in RFC 7292 section 4.2.
.Pp
.Fn d2i_PKCS12_BAGS
and
.Fn i2d_PKCS12_BAGS
decode and encode the bagValue field of an ASN.1
.Vt SafeBag
structure.
.Sh RETURN VALUES
.Fn d2i_PKCS12 ,
.Fn d2i_PKCS12_bio ,
and
.Fn d2i_PKCS12_fp
return a
.Vt PKCS12
object or
.Dv NULL
if an error occurs.
.Pp
.Fn d2i_PKCS12_MAC_DATA ,
.Fn d2i_PKCS12_SAFEBAG ,
and
.Fn d2i_PKCS12_BAGS
return a
.Vt PKCS12_MAC_DATA ,
.Vt PKCS12_SAFEBAG ,
or
.Vt PKCS12_BAGS
object, respectively, or
.Dv NULL
if an error occurs.
.Pp
.Fn i2d_PKCS12 ,
.Fn i2d_PKCS12_MAC_DATA ,
.Fn i2d_PKCS12_SAFEBAG ,
and
.Fn i2d_PKCS12_BAGS
return the number of bytes successfully encoded or a negative value
if an error occurs.
.Pp
.Fn i2d_PKCS12_bio
and
.Fn i2d_PKCS12_fp
return 1 for success or 0 if an error occurs.
.Sh SEE ALSO
.Xr ASN1_item_d2i 3 ,
.Xr PKCS12_create 3 ,
.Xr PKCS12_new 3 ,
.Xr PKCS12_parse 3 ,
.Xr PKCS12_SAFEBAG_new 3
.Sh STANDARDS
RFC 7292: PKCS #12: Personal Information Exchange Syntax
.Sh HISTORY
.Fn d2i_PKCS12 ,
.Fn i2d_PKCS12 ,
.Fn d2i_PKCS12_bio ,
.Fn i2d_PKCS12_bio ,
.Fn d2i_PKCS12_fp ,
.Fn i2d_PKCS12_fp ,
.Fn d2i_PKCS12_MAC_DATA ,
.Fn i2d_PKCS12_MAC_DATA ,
.Fn d2i_PKCS12_SAFEBAG ,
.Fn i2d_PKCS12_SAFEBAG ,
.Fn d2i_PKCS12_BAGS ,
and
.Fn i2d_PKCS12_BAGS
first appeared in OpenSSL 0.9.3 and have been available since
.Ox 2.6 .