jdk/src/java.base/share/classes/sun/security/pkcs/PKCS9Attribute.java
changeset 32649 2ee9017c7597
parent 30374 2abaf49910ea
child 34687 d302ed125dc9
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
   184     /**
   184     /**
   185      * Array of attribute OIDs defined in PKCS9, by number.
   185      * Array of attribute OIDs defined in PKCS9, by number.
   186      */
   186      */
   187     static final ObjectIdentifier[] PKCS9_OIDS = new ObjectIdentifier[18];
   187     static final ObjectIdentifier[] PKCS9_OIDS = new ObjectIdentifier[18];
   188 
   188 
   189     private final static Class<?> BYTE_ARRAY_CLASS;
   189     private static final Class<?> BYTE_ARRAY_CLASS;
   190 
   190 
   191     static {   // static initializer for PKCS9_OIDS
   191     static {   // static initializer for PKCS9_OIDS
   192         for (int i = 1; i < PKCS9_OIDS.length - 2; i++) {
   192         for (int i = 1; i < PKCS9_OIDS.length - 2; i++) {
   193             PKCS9_OIDS[i] =
   193             PKCS9_OIDS[i] =
   194                 ObjectIdentifier.newInternal(new int[]{1,2,840,113549,1,9,i});
   194                 ObjectIdentifier.newInternal(new int[]{1,2,840,113549,1,9,i});