Skip to content

Commit b95310b

Browse files
author
John Jiang
committedFeb 22, 2022
8282220: contentType should not be a PKCS7's member
Reviewed-by: xuelei
1 parent bc43320 commit b95310b

File tree

1 file changed

+5
-19
lines changed
  • src/java.base/share/classes/sun/security/pkcs

1 file changed

+5
-19
lines changed
 

‎src/java.base/share/classes/sun/security/pkcs/PKCS7.java

+5-19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -53,8 +53,6 @@
5353
*/
5454
public class PKCS7 {
5555

56-
private ObjectIdentifier contentType;
57-
5856
// the ASN.1 members for a signedData (and other) contentTypes
5957
private BigInteger version = null;
6058
private AlgorithmId[] digestAlgorithmIds = null;
@@ -167,7 +165,7 @@ private void parse(DerInputStream derin, boolean oldStyle)
167165
throws IOException
168166
{
169167
ContentInfo block = new ContentInfo(derin, oldStyle);
170-
contentType = block.contentType;
168+
ObjectIdentifier contentType = block.contentType;
171169
DerValue content = block.getContent();
172170

173171
if (contentType.equals(ContentInfo.SIGNED_DATA_OID)) {
@@ -240,14 +238,10 @@ private void parseNetscapeCertChain(DerValue val)
240238
bais.close();
241239
bais = null;
242240
}
243-
} catch (CertificateException ce) {
241+
} catch (CertificateException | IOException ce) {
244242
ParsingException pe = new ParsingException(ce.getMessage());
245243
pe.initCause(ce);
246244
throw pe;
247-
} catch (IOException ioe) {
248-
ParsingException pe = new ParsingException(ioe.getMessage());
249-
pe.initCause(ioe);
250-
throw pe;
251245
} finally {
252246
if (bais != null)
253247
bais.close();
@@ -330,14 +324,10 @@ private void parseSignedData(DerValue val)
330324
}
331325
count++;
332326
}
333-
} catch (CertificateException ce) {
327+
} catch (CertificateException | IOException ce) {
334328
ParsingException pe = new ParsingException(ce.getMessage());
335329
pe.initCause(ce);
336330
throw pe;
337-
} catch (IOException ioe) {
338-
ParsingException pe = new ParsingException(ioe.getMessage());
339-
pe.initCause(ioe);
340-
throw pe;
341331
} finally {
342332
if (bais != null)
343333
bais.close();
@@ -444,14 +434,10 @@ private void parseOldSignedData(DerValue val)
444434
bais.close();
445435
bais = null;
446436
}
447-
} catch (CertificateException ce) {
437+
} catch (CertificateException | IOException ce) {
448438
ParsingException pe = new ParsingException(ce.getMessage());
449439
pe.initCause(ce);
450440
throw pe;
451-
} catch (IOException ioe) {
452-
ParsingException pe = new ParsingException(ioe.getMessage());
453-
pe.initCause(ioe);
454-
throw pe;
455441
} finally {
456442
if (bais != null)
457443
bais.close();

0 commit comments

Comments
 (0)
Please sign in to comment.