-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Expand file tree
/
Copy pathPEM.java
More file actions
258 lines (239 loc) · 9.19 KB
/
Copy pathPEM.java
File metadata and controls
258 lines (239 loc) · 9.19 KB
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/*
* Copyright (c) 2025, 2026, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package java.security;
import jdk.internal.javac.PreviewFeature;
import jdk.internal.ref.CleanerFactory;
import sun.security.util.KeyUtil;
import sun.security.util.Pem;
import java.io.InputStream;
import java.lang.ref.Reference;
import java.nio.charset.StandardCharsets;
import java.util.Base64;
import java.util.Objects;
/**
* A {@link BinaryEncodable} representing a Privacy-Enhanced Mail (PEM) structure
* composed of a type identifier, Base64-encoded content, and optional
* leading data that precedes the PEM header.
*
* <p>The {@code type} is the label in the PEM header, following the
* {@code BEGIN} keyword and excluding the encapsulation boundaries.
* Common {@code type} values include, but are not limited to:
* CERTIFICATE, CERTIFICATE REQUEST, ATTRIBUTE CERTIFICATE, X509 CRL, PKCS7,
* CMS, PRIVATE KEY, ENCRYPTED PRIVATE KEY, and PUBLIC KEY.
*
* <p>Instances of this class are returned by {@link PEMDecoder#decode(String)}
* and {@link PEMDecoder#decode(InputStream)} when the content cannot be represented
* as a cryptographic object. To explicitly retrieve a {@code PEM} instance
* with access to the leading data, use {@link PEMDecoder#decode(String, Class)}
* or {@link PEMDecoder#decode(InputStream, Class)} with {@code PEM.class} as the
* type.
*
* <p>A {@code PEM} object can be encoded to its textual representation by
* invoking {@link #toString()} or by using {@link PEMEncoder}.
*
* <p>To construct a {@code PEM} instance, {@code type} and
* {@code base64Content} must be non-{@code null}. For constructors that accept
* {@code leadingData}, it must also be non-{@code null}.
*
* <p>No validation is performed to ensure that the {@code type} conforms to
* RFC 7468 or legacy formats, or that the content corresponds to the declared
* {@code type}.
*
* @spec https://www.rfc-editor.org/info/rfc7468
* RFC 7468: Textual Encodings of PKIX, PKCS, and CMS Structures
*
* @see PEMDecoder
* @see PEMEncoder
*
* @since 26
*/
@PreviewFeature(feature = PreviewFeature.Feature.PEM_API)
public final class PEM implements BinaryEncodable {
private final String type;
private final byte[] content;
private byte[] leadingData;
/**
* Creates a {@code PEM} instance with the specified type, Base64-encoded
* content string, and leading data byte array.
*
* @param type the PEM type identifier; must not contain PEM encapsulation
* syntax
* @param base64Content the Base64-encoded content, excluding the PEM header
* and footer
* @param leadingData data that precedes the PEM header.
* This array is defensively copied.
*
* @throws IllegalArgumentException if {@code type} contains PEM
* encapsulation syntax
* @throws NullPointerException if any parameter is {@code null}
*/
public PEM(String type, String base64Content, byte[] leadingData) {
Objects.requireNonNull(base64Content, "base64Content cannot be null");
this(type, base64Content.getBytes(StandardCharsets.ISO_8859_1),
leadingData);
}
/**
* Creates a {@code PEM} instance with the specified type and Base64-encoded
* content string.
*
* @param type the PEM type identifier; must not contain PEM encapsulation
* syntax
* @param base64Content the Base64-encoded content, excluding the PEM header
* and footer
* @throws IllegalArgumentException if {@code type} contains PEM
* encapsulation syntax
* @throws NullPointerException if any parameter is {@code null}
*/
public PEM(String type, String base64Content) {
Objects.requireNonNull(base64Content, "base64Content cannot be null");
this(type, base64Content.getBytes(StandardCharsets.ISO_8859_1));
}
/**
* Creates a {@code PEM} instance with the specified type and Base64-encoded
* content and leading data as byte arrays.
*
* @param type the PEM type identifier; must not contain PEM encapsulation
* syntax
* @param base64Content the Base64-encoded content, excluding the PEM header
* and footer. This array is defensively copied.
* @param leadingData data that precedes the PEM header.
* This array is defensively copied.
*
* @throws IllegalArgumentException if {@code type} contains PEM
* encapsulation syntax
* @throws NullPointerException if any parameter is {@code null}
*
* @since 27
*/
public PEM(String type, byte[] base64Content, byte[] leadingData) {
this(type, base64Content);
this.leadingData = Objects.requireNonNull(
leadingData, "leadingData cannot be null").clone();
}
/**
* Creates a {@code PEM} instance with the specified type and Base64-encoded
* content byte array.
*
* @param type the PEM type identifier; must not contain PEM encapsulation
* syntax
* @param base64Content the Base64-encoded content, excluding the PEM header
* and footer. This array is defensively copied.
* @throws IllegalArgumentException if {@code type} contains PEM
* encapsulation syntax
* @throws NullPointerException if any parameter is {@code null}
*
* @since 27
*/
public PEM(String type, byte[] base64Content) {
Objects.requireNonNull(type, "type cannot be null");
Objects.requireNonNull(base64Content, "base64Content cannot be null");
// The `type` is not checked against any specification. The onus is on
// the caller. Only minor formatting checks are done
if (type.startsWith("-") || type.startsWith("BEGIN ") ||
type.startsWith("END ")) {
throw new IllegalArgumentException("PEM syntax labels found. " +
"Only the PEM type identifier is allowed.");
}
content = base64Content.clone();
this.type = type;
final var c = content;
CleanerFactory.cleaner().register(this, () -> KeyUtil.clear(c));
}
/**
* Returns the PEM type identifier.
*
* @return the PEM type identifier
*/
public String type() {
return type;
}
/**
* Returns the leading data that preceded the PEM header in the decoded
* input.
*
* @return a newly-allocated byte array containing leading data, or
* {@code null} if no leading data is present
*/
public byte[] leadingData() {
return (leadingData != null) ? leadingData.clone() : null;
}
/**
* Returns the Base64-encoded content.
*
* @return a newly-allocated byte array containing the Base64 content
*
* @since 27
*/
public byte[] content() {
try {
return content.clone();
} finally {
Reference.reachabilityFence(this);
}
}
/**
* Returns the Base64-decoded content as a byte array, using
* {@link Base64#getMimeDecoder()}.
*
* @return a newly-allocated byte array containing the decoded content
* @throws IllegalArgumentException if decoding fails
*/
public byte[] decode() {
try {
return Base64.getMimeDecoder().decode(content);
} finally {
Reference.reachabilityFence(this);
}
}
/**
* Returns a PEM string representation of this object, using {@code type}
* for the header and footer lines and {@code content} for the Base64 body.
*
* @return the PEM-formatted string
*/
@Override
public String toString() {
try {
return new String(Pem.pemEncoded(type, content),
StandardCharsets.ISO_8859_1);
} finally {
Reference.reachabilityFence(this);
}
}
/*
* Returns the PEM string representation as a byte array.
*/
byte[] toTextualByteArray() {
try {
return Pem.pemEncoded(type, content);
} finally {
Reference.reachabilityFence(this);
}
}
// Clear internal content
void clear() {
KeyUtil.clear(content);
}
}