|
1 | 1 | /*
|
2 |
| - * Copyright (c) 1996, 2015, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 1996, 2020, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
|
38 | 38 | public class ContentInfo {
|
39 | 39 |
|
40 | 40 | // pkcs7 pre-defined content types
|
41 |
| - private static int[] pkcs7 = {1, 2, 840, 113549, 1, 7}; |
42 |
| - private static int[] data = {1, 2, 840, 113549, 1, 7, 1}; |
43 |
| - private static int[] sdata = {1, 2, 840, 113549, 1, 7, 2}; |
44 |
| - private static int[] edata = {1, 2, 840, 113549, 1, 7, 3}; |
45 |
| - private static int[] sedata = {1, 2, 840, 113549, 1, 7, 4}; |
46 |
| - private static int[] ddata = {1, 2, 840, 113549, 1, 7, 5}; |
47 |
| - private static int[] crdata = {1, 2, 840, 113549, 1, 7, 6}; |
48 |
| - private static int[] nsdata = {2, 16, 840, 1, 113730, 2, 5}; |
49 |
| - // timestamp token (id-ct-TSTInfo) from RFC 3161 |
50 |
| - private static int[] tstInfo = {1, 2, 840, 113549, 1, 9, 16, 1, 4}; |
| 41 | + public static ObjectIdentifier PKCS7_OID = |
| 42 | + ObjectIdentifier.of("1.2.840.113549.1.7"); |
| 43 | + public static ObjectIdentifier DATA_OID = |
| 44 | + ObjectIdentifier.of("1.2.840.113549.1.7.1"); |
| 45 | + public static ObjectIdentifier SIGNED_DATA_OID = |
| 46 | + ObjectIdentifier.of("1.2.840.113549.1.7.2"); |
| 47 | + public static ObjectIdentifier ENVELOPED_DATA_OID = |
| 48 | + ObjectIdentifier.of("1.2.840.113549.1.7.3"); |
| 49 | + public static ObjectIdentifier SIGNED_AND_ENVELOPED_DATA_OID = |
| 50 | + ObjectIdentifier.of("1.2.840.113549.1.7.4"); |
| 51 | + public static ObjectIdentifier DIGESTED_DATA_OID = |
| 52 | + ObjectIdentifier.of("1.2.840.113549.1.7.5"); |
| 53 | + public static ObjectIdentifier ENCRYPTED_DATA_OID = |
| 54 | + ObjectIdentifier.of("1.2.840.113549.1.7.6"); |
| 55 | + |
51 | 56 | // this is for backwards-compatibility with JDK 1.1.x
|
52 |
| - private static final int[] OLD_SDATA = {1, 2, 840, 1113549, 1, 7, 2}; |
53 |
| - private static final int[] OLD_DATA = {1, 2, 840, 1113549, 1, 7, 1}; |
54 |
| - public static ObjectIdentifier PKCS7_OID; |
55 |
| - public static ObjectIdentifier DATA_OID; |
56 |
| - public static ObjectIdentifier SIGNED_DATA_OID; |
57 |
| - public static ObjectIdentifier ENVELOPED_DATA_OID; |
58 |
| - public static ObjectIdentifier SIGNED_AND_ENVELOPED_DATA_OID; |
59 |
| - public static ObjectIdentifier DIGESTED_DATA_OID; |
60 |
| - public static ObjectIdentifier ENCRYPTED_DATA_OID; |
61 |
| - public static ObjectIdentifier OLD_SIGNED_DATA_OID; |
62 |
| - public static ObjectIdentifier OLD_DATA_OID; |
63 |
| - public static ObjectIdentifier NETSCAPE_CERT_SEQUENCE_OID; |
64 |
| - public static ObjectIdentifier TIMESTAMP_TOKEN_INFO_OID; |
65 |
| - |
66 |
| - static { |
67 |
| - PKCS7_OID = ObjectIdentifier.newInternal(pkcs7); |
68 |
| - DATA_OID = ObjectIdentifier.newInternal(data); |
69 |
| - SIGNED_DATA_OID = ObjectIdentifier.newInternal(sdata); |
70 |
| - ENVELOPED_DATA_OID = ObjectIdentifier.newInternal(edata); |
71 |
| - SIGNED_AND_ENVELOPED_DATA_OID = ObjectIdentifier.newInternal(sedata); |
72 |
| - DIGESTED_DATA_OID = ObjectIdentifier.newInternal(ddata); |
73 |
| - ENCRYPTED_DATA_OID = ObjectIdentifier.newInternal(crdata); |
74 |
| - OLD_SIGNED_DATA_OID = ObjectIdentifier.newInternal(OLD_SDATA); |
75 |
| - OLD_DATA_OID = ObjectIdentifier.newInternal(OLD_DATA); |
76 |
| - /** |
77 |
| - * The ASN.1 systax for the Netscape Certificate Sequence |
78 |
| - * data type is defined |
79 |
| - * <a href=http://wp.netscape.com/eng/security/comm4-cert-download.html> |
80 |
| - * here.</a> |
81 |
| - */ |
82 |
| - NETSCAPE_CERT_SEQUENCE_OID = ObjectIdentifier.newInternal(nsdata); |
83 |
| - TIMESTAMP_TOKEN_INFO_OID = ObjectIdentifier.newInternal(tstInfo); |
84 |
| - } |
| 57 | + public static ObjectIdentifier OLD_SIGNED_DATA_OID = |
| 58 | + ObjectIdentifier.of("1.2.840.1113549.1.7.2"); |
| 59 | + public static ObjectIdentifier OLD_DATA_OID = |
| 60 | + ObjectIdentifier.of("1.2.840.1113549.1.7.1"); |
| 61 | + |
| 62 | + // The ASN.1 systax for the Netscape Certificate Sequence data type is |
| 63 | + // defined at: |
| 64 | + // http://wp.netscape.com/eng/security/comm4-cert-download.html |
| 65 | + public static ObjectIdentifier NETSCAPE_CERT_SEQUENCE_OID = |
| 66 | + ObjectIdentifier.of("2.16.840.1.113730.2.5"); |
| 67 | + |
| 68 | + // timestamp token (id-ct-TSTInfo) from RFC 3161 |
| 69 | + public static ObjectIdentifier TIMESTAMP_TOKEN_INFO_OID = |
| 70 | + ObjectIdentifier.of("1.2.840.113549.1.9.16.1.4"); |
85 | 71 |
|
86 | 72 | ObjectIdentifier contentType;
|
87 | 73 | DerValue content; // OPTIONAL
|
|
0 commit comments