public class sun.security.provider.X509Factory extends java.security.cert.CertificateFactorySpi
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.security.provider.X509Factory
  super_class: java.security.cert.CertificateFactorySpi
{
  public static final java.lang.String BEGIN_CERT;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "-----BEGIN CERTIFICATE-----"

  public static final java.lang.String END_CERT;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "-----END CERTIFICATE-----"

  private static final int ENC_MAX_LENGTH;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4194304

  private static final sun.security.util.Cache certCache;
    descriptor: Lsun/security/util/Cache;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final sun.security.util.Cache crlCache;
    descriptor: Lsun/security/util/Cache;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 67
            sipush 750
            invokestatic sun.security.util.Cache.newSoftMemoryCache:(I)Lsun/security/util/Cache;
            putstatic sun.security.provider.X509Factory.certCache:Lsun/security/util/Cache;
         1: .line 68
            sipush 750
            invokestatic sun.security.util.Cache.newSoftMemoryCache:(I)Lsun/security/util/Cache;
            putstatic sun.security.provider.X509Factory.crlCache:Lsun/security/util/Cache;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.provider.X509Factory this
         0: .line 60
            aload 0 /* this */
            invokespecial java.security.cert.CertificateFactorySpi.<init>:()V
            return
        end local 0 // sun.security.provider.X509Factory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/provider/X509Factory;

  public java.security.cert.Certificate engineGenerateCertificate(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)Ljava/security/cert/Certificate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // sun.security.provider.X509Factory this
        start local 1 // java.io.InputStream is
         0: .line 85
            aload 1 /* is */
            ifnonnull 4
         1: .line 87
            getstatic sun.security.provider.X509Factory.certCache:Lsun/security/util/Cache;
            invokevirtual sun.security.util.Cache.clear:()V
         2: .line 88
            invokestatic sun.security.provider.certpath.X509CertificatePair.clearCache:()V
         3: .line 89
            new java.security.cert.CertificateException
            dup
            ldc "Missing input stream"
            invokespecial java.security.cert.CertificateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 92
      StackMap locals:
      StackMap stack:
            aload 1 /* is */
            invokestatic sun.security.provider.X509Factory.readOneBlock:(Ljava/io/InputStream;)[B
            astore 2 /* encoding */
        start local 2 // byte[] encoding
         5: .line 93
            aload 2 /* encoding */
            ifnull 14
         6: .line 94
            getstatic sun.security.provider.X509Factory.certCache:Lsun/security/util/Cache;
            aload 2 /* encoding */
            invokestatic sun.security.provider.X509Factory.getFromCache:(Lsun/security/util/Cache;[B)Ljava/lang/Object;
            checkcast sun.security.x509.X509CertImpl
            astore 3 /* cert */
        start local 3 // sun.security.x509.X509CertImpl cert
         7: .line 95
            aload 3 /* cert */
            ifnull 10
         8: .line 96
            aload 3 /* cert */
         9: areturn
        10: .line 98
      StackMap locals: byte[] sun.security.x509.X509CertImpl
      StackMap stack:
            new sun.security.x509.X509CertImpl
            dup
            aload 2 /* encoding */
            invokespecial sun.security.x509.X509CertImpl.<init>:([B)V
            astore 3 /* cert */
        11: .line 99
            getstatic sun.security.provider.X509Factory.certCache:Lsun/security/util/Cache;
            aload 3 /* cert */
            invokevirtual sun.security.x509.X509CertImpl.getEncodedInternal:()[B
            aload 3 /* cert */
            invokestatic sun.security.provider.X509Factory.addToCache:(Lsun/security/util/Cache;[BLjava/lang/Object;)V
        12: .line 100
            aload 3 /* cert */
        13: areturn
        end local 3 // sun.security.x509.X509CertImpl cert
        14: .line 102
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            ldc "Empty input"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // byte[] encoding
        15: .line 104
      StackMap locals: sun.security.provider.X509Factory java.io.InputStream
      StackMap stack: java.io.IOException
            astore 2 /* ioe */
        start local 2 // java.io.IOException ioe
        16: .line 105
            new java.security.cert.CertificateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Could not parse certificate: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        17: .line 106
            aload 2 /* ioe */
            invokevirtual java.io.IOException.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 2 /* ioe */
        18: .line 105
            invokespecial java.security.cert.CertificateException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException ioe
        end local 1 // java.io.InputStream is
        end local 0 // sun.security.provider.X509Factory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   19     0      this  Lsun/security/provider/X509Factory;
            0   19     1        is  Ljava/io/InputStream;
            5   15     2  encoding  [B
            7   14     3      cert  Lsun/security/x509/X509CertImpl;
           16   19     2       ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           4     9      15  Class java.io.IOException
          10    13      15  Class java.io.IOException
          14    15      15  Class java.io.IOException
    Exceptions:
      throws java.security.cert.CertificateException
    MethodParameters:
      Name  Flags
      is    

  private static int readFully(java.io.InputStream, java.io.ByteArrayOutputStream, int);
    descriptor: (Ljava/io/InputStream;Ljava/io/ByteArrayOutputStream;I)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // java.io.InputStream in
        start local 1 // java.io.ByteArrayOutputStream bout
        start local 2 // int length
         0: .line 116
            iconst_0
            istore 3 /* read */
        start local 3 // int read
         1: .line 117
            sipush 2048
            newarray 8
            astore 4 /* buffer */
        start local 4 // byte[] buffer
         2: .line 118
            goto 11
         3: .line 119
      StackMap locals: int byte[]
      StackMap stack:
            aload 0 /* in */
            aload 4 /* buffer */
            iconst_0
            iload 2 /* length */
            sipush 2048
            if_icmpge 4
            iload 2 /* length */
            goto 5
      StackMap locals: java.io.InputStream java.io.ByteArrayOutputStream int int byte[]
      StackMap stack: java.io.InputStream byte[] int
         4: sipush 2048
      StackMap locals: java.io.InputStream java.io.ByteArrayOutputStream int int byte[]
      StackMap stack: java.io.InputStream byte[] int int
         5: invokevirtual java.io.InputStream.read:([BII)I
            istore 5 /* n */
        start local 5 // int n
         6: .line 120
            iload 5 /* n */
            ifgt 8
         7: .line 121
            goto 12
         8: .line 123
      StackMap locals: int
      StackMap stack:
            aload 1 /* bout */
            aload 4 /* buffer */
            iconst_0
            iload 5 /* n */
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
         9: .line 124
            iload 3 /* read */
            iload 5 /* n */
            iadd
            istore 3 /* read */
        10: .line 125
            iload 2 /* length */
            iload 5 /* n */
            isub
            istore 2 /* length */
        end local 5 // int n
        11: .line 118
      StackMap locals:
      StackMap stack:
            iload 2 /* length */
            ifgt 3
        12: .line 127
      StackMap locals:
      StackMap stack:
            iload 3 /* read */
            ireturn
        end local 4 // byte[] buffer
        end local 3 // int read
        end local 2 // int length
        end local 1 // java.io.ByteArrayOutputStream bout
        end local 0 // java.io.InputStream in
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0      in  Ljava/io/InputStream;
            0   13     1    bout  Ljava/io/ByteArrayOutputStream;
            0   13     2  length  I
            1   13     3    read  I
            2   13     4  buffer  [B
            6   11     5       n  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      in      
      bout    
      length  

  public static synchronized sun.security.x509.X509CertImpl intern(java.security.cert.X509Certificate);
    descriptor: (Ljava/security/cert/X509Certificate;)Lsun/security/x509/X509CertImpl;
    flags: (0x0029) ACC_PUBLIC, ACC_STATIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // java.security.cert.X509Certificate c
         0: .line 151
            aload 0 /* c */
            ifnonnull 2
         1: .line 152
            aconst_null
            areturn
         2: .line 154
      StackMap locals:
      StackMap stack:
            aload 0 /* c */
            instanceof sun.security.x509.X509CertImpl
            istore 1 /* isImpl */
        start local 1 // boolean isImpl
         3: .line 156
            iload 1 /* isImpl */
            ifeq 6
         4: .line 157
            aload 0 /* c */
            checkcast sun.security.x509.X509CertImpl
            invokevirtual sun.security.x509.X509CertImpl.getEncodedInternal:()[B
            astore 2 /* encoding */
        start local 2 // byte[] encoding
         5: .line 158
            goto 7
        end local 2 // byte[] encoding
         6: .line 159
      StackMap locals: int
      StackMap stack:
            aload 0 /* c */
            invokevirtual java.security.cert.X509Certificate.getEncoded:()[B
            astore 2 /* encoding */
        start local 2 // byte[] encoding
         7: .line 161
      StackMap locals: byte[]
      StackMap stack:
            getstatic sun.security.provider.X509Factory.certCache:Lsun/security/util/Cache;
            aload 2 /* encoding */
            invokestatic sun.security.provider.X509Factory.getFromCache:(Lsun/security/util/Cache;[B)Ljava/lang/Object;
            checkcast sun.security.x509.X509CertImpl
            astore 3 /* newC */
        start local 3 // sun.security.x509.X509CertImpl newC
         8: .line 162
            aload 3 /* newC */
            ifnull 10
         9: .line 163
            aload 3 /* newC */
            areturn
        10: .line 165
      StackMap locals: sun.security.x509.X509CertImpl
      StackMap stack:
            iload 1 /* isImpl */
            ifeq 13
        11: .line 166
            aload 0 /* c */
            checkcast sun.security.x509.X509CertImpl
            astore 3 /* newC */
        12: .line 167
            goto 15
        13: .line 168
      StackMap locals:
      StackMap stack:
            new sun.security.x509.X509CertImpl
            dup
            aload 2 /* encoding */
            invokespecial sun.security.x509.X509CertImpl.<init>:([B)V
            astore 3 /* newC */
        14: .line 169
            aload 3 /* newC */
            invokevirtual sun.security.x509.X509CertImpl.getEncodedInternal:()[B
            astore 2 /* encoding */
        15: .line 171
      StackMap locals:
      StackMap stack:
            getstatic sun.security.provider.X509Factory.certCache:Lsun/security/util/Cache;
            aload 2 /* encoding */
            aload 3 /* newC */
            invokestatic sun.security.provider.X509Factory.addToCache:(Lsun/security/util/Cache;[BLjava/lang/Object;)V
        16: .line 172
            aload 3 /* newC */
            areturn
        end local 3 // sun.security.x509.X509CertImpl newC
        end local 2 // byte[] encoding
        end local 1 // boolean isImpl
        end local 0 // java.security.cert.X509Certificate c
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0         c  Ljava/security/cert/X509Certificate;
            3   17     1    isImpl  Z
            5    6     2  encoding  [B
            7   17     2  encoding  [B
            8   17     3      newC  Lsun/security/x509/X509CertImpl;
    Exceptions:
      throws java.security.cert.CertificateException
    MethodParameters:
      Name  Flags
      c     

  public static synchronized sun.security.x509.X509CRLImpl intern(java.security.cert.X509CRL);
    descriptor: (Ljava/security/cert/X509CRL;)Lsun/security/x509/X509CRLImpl;
    flags: (0x0029) ACC_PUBLIC, ACC_STATIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // java.security.cert.X509CRL c
         0: .line 186
            aload 0 /* c */
            ifnonnull 2
         1: .line 187
            aconst_null
            areturn
         2: .line 189
      StackMap locals:
      StackMap stack:
            aload 0 /* c */
            instanceof sun.security.x509.X509CRLImpl
            istore 1 /* isImpl */
        start local 1 // boolean isImpl
         3: .line 191
            iload 1 /* isImpl */
            ifeq 6
         4: .line 192
            aload 0 /* c */
            checkcast sun.security.x509.X509CRLImpl
            invokevirtual sun.security.x509.X509CRLImpl.getEncodedInternal:()[B
            astore 2 /* encoding */
        start local 2 // byte[] encoding
         5: .line 193
            goto 7
        end local 2 // byte[] encoding
         6: .line 194
      StackMap locals: int
      StackMap stack:
            aload 0 /* c */
            invokevirtual java.security.cert.X509CRL.getEncoded:()[B
            astore 2 /* encoding */
        start local 2 // byte[] encoding
         7: .line 196
      StackMap locals: byte[]
      StackMap stack:
            getstatic sun.security.provider.X509Factory.crlCache:Lsun/security/util/Cache;
            aload 2 /* encoding */
            invokestatic sun.security.provider.X509Factory.getFromCache:(Lsun/security/util/Cache;[B)Ljava/lang/Object;
            checkcast sun.security.x509.X509CRLImpl
            astore 3 /* newC */
        start local 3 // sun.security.x509.X509CRLImpl newC
         8: .line 197
            aload 3 /* newC */
            ifnull 10
         9: .line 198
            aload 3 /* newC */
            areturn
        10: .line 200
      StackMap locals: sun.security.x509.X509CRLImpl
      StackMap stack:
            iload 1 /* isImpl */
            ifeq 13
        11: .line 201
            aload 0 /* c */
            checkcast sun.security.x509.X509CRLImpl
            astore 3 /* newC */
        12: .line 202
            goto 15
        13: .line 203
      StackMap locals:
      StackMap stack:
            new sun.security.x509.X509CRLImpl
            dup
            aload 2 /* encoding */
            invokespecial sun.security.x509.X509CRLImpl.<init>:([B)V
            astore 3 /* newC */
        14: .line 204
            aload 3 /* newC */
            invokevirtual sun.security.x509.X509CRLImpl.getEncodedInternal:()[B
            astore 2 /* encoding */
        15: .line 206
      StackMap locals:
      StackMap stack:
            getstatic sun.security.provider.X509Factory.crlCache:Lsun/security/util/Cache;
            aload 2 /* encoding */
            aload 3 /* newC */
            invokestatic sun.security.provider.X509Factory.addToCache:(Lsun/security/util/Cache;[BLjava/lang/Object;)V
        16: .line 207
            aload 3 /* newC */
            areturn
        end local 3 // sun.security.x509.X509CRLImpl newC
        end local 2 // byte[] encoding
        end local 1 // boolean isImpl
        end local 0 // java.security.cert.X509CRL c
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0         c  Ljava/security/cert/X509CRL;
            3   17     1    isImpl  Z
            5    6     2  encoding  [B
            7   17     2  encoding  [B
            8   17     3      newC  Lsun/security/x509/X509CRLImpl;
    Exceptions:
      throws java.security.cert.CRLException
    MethodParameters:
      Name  Flags
      c     

  private static synchronized java.lang.Object getFromCache(sun.security.util.Cache, byte[]);
    descriptor: (Lsun/security/util/Cache;[B)Ljava/lang/Object;
    flags: (0x002a) ACC_PRIVATE, ACC_STATIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.security.util.Cache cache
        start local 1 // byte[] encoding
         0: .line 215
            new sun.security.util.Cache$EqualByteArray
            dup
            aload 1 /* encoding */
            invokespecial sun.security.util.Cache$EqualByteArray.<init>:([B)V
            astore 2 /* key */
        start local 2 // java.lang.Object key
         1: .line 216
            aload 0 /* cache */
            aload 2 /* key */
            invokevirtual sun.security.util.Cache.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* value */
        start local 3 // java.lang.Object value
         2: .line 217
            aload 3 /* value */
            areturn
        end local 3 // java.lang.Object value
        end local 2 // java.lang.Object key
        end local 1 // byte[] encoding
        end local 0 // sun.security.util.Cache cache
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0     cache  Lsun/security/util/Cache;
            0    3     1  encoding  [B
            1    3     2       key  Ljava/lang/Object;
            2    3     3     value  Ljava/lang/Object;
    MethodParameters:
          Name  Flags
      cache     
      encoding  

  private static synchronized void addToCache(sun.security.util.Cache, byte[], java.lang.Object);
    descriptor: (Lsun/security/util/Cache;[BLjava/lang/Object;)V
    flags: (0x002a) ACC_PRIVATE, ACC_STATIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // sun.security.util.Cache cache
        start local 1 // byte[] encoding
        start local 2 // java.lang.Object value
         0: .line 225
            aload 1 /* encoding */
            arraylength
            ldc 4194304
            if_icmple 2
         1: .line 226
            return
         2: .line 228
      StackMap locals:
      StackMap stack:
            new sun.security.util.Cache$EqualByteArray
            dup
            aload 1 /* encoding */
            invokespecial sun.security.util.Cache$EqualByteArray.<init>:([B)V
            astore 3 /* key */
        start local 3 // java.lang.Object key
         3: .line 229
            aload 0 /* cache */
            aload 3 /* key */
            aload 2 /* value */
            invokevirtual sun.security.util.Cache.put:(Ljava/lang/Object;Ljava/lang/Object;)V
         4: .line 230
            return
        end local 3 // java.lang.Object key
        end local 2 // java.lang.Object value
        end local 1 // byte[] encoding
        end local 0 // sun.security.util.Cache cache
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0     cache  Lsun/security/util/Cache;
            0    5     1  encoding  [B
            0    5     2     value  Ljava/lang/Object;
            3    5     3       key  Ljava/lang/Object;
    MethodParameters:
          Name  Flags
      cache     
      encoding  
      value     

  public java.security.cert.CertPath engineGenerateCertPath(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)Ljava/security/cert/CertPath;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // sun.security.provider.X509Factory this
        start local 1 // java.io.InputStream inStream
         0: .line 247
            aload 1 /* inStream */
            ifnonnull 2
         1: .line 248
            new java.security.cert.CertificateException
            dup
            ldc "Missing input stream"
            invokespecial java.security.cert.CertificateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 251
      StackMap locals:
      StackMap stack:
            aload 1 /* inStream */
            invokestatic sun.security.provider.X509Factory.readOneBlock:(Ljava/io/InputStream;)[B
            astore 2 /* encoding */
        start local 2 // byte[] encoding
         3: .line 252
            aload 2 /* encoding */
            ifnull 6
         4: .line 253
            new sun.security.provider.certpath.X509CertPath
            dup
            new java.io.ByteArrayInputStream
            dup
            aload 2 /* encoding */
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
            invokespecial sun.security.provider.certpath.X509CertPath.<init>:(Ljava/io/InputStream;)V
         5: areturn
         6: .line 255
      StackMap locals: byte[]
      StackMap stack:
            new java.io.IOException
            dup
            ldc "Empty input"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // byte[] encoding
         7: .line 257
      StackMap locals: sun.security.provider.X509Factory java.io.InputStream
      StackMap stack: java.io.IOException
            astore 2 /* ioe */
        start local 2 // java.io.IOException ioe
         8: .line 258
            new java.security.cert.CertificateException
            dup
            aload 2 /* ioe */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            invokespecial java.security.cert.CertificateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.io.IOException ioe
        end local 1 // java.io.InputStream inStream
        end local 0 // sun.security.provider.X509Factory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lsun/security/provider/X509Factory;
            0    9     1  inStream  Ljava/io/InputStream;
            3    7     2  encoding  [B
            8    9     2       ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           2     5       7  Class java.io.IOException
           6     7       7  Class java.io.IOException
    Exceptions:
      throws java.security.cert.CertificateException
    MethodParameters:
          Name  Flags
      inStream  

  public java.security.cert.CertPath engineGenerateCertPath(java.io.InputStream, java.lang.String);
    descriptor: (Ljava/io/InputStream;Ljava/lang/String;)Ljava/security/cert/CertPath;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // sun.security.provider.X509Factory this
        start local 1 // java.io.InputStream inStream
        start local 2 // java.lang.String encoding
         0: .line 279
            aload 1 /* inStream */
            ifnonnull 2
         1: .line 280
            new java.security.cert.CertificateException
            dup
            ldc "Missing input stream"
            invokespecial java.security.cert.CertificateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 283
      StackMap locals:
      StackMap stack:
            aload 1 /* inStream */
            invokestatic sun.security.provider.X509Factory.readOneBlock:(Ljava/io/InputStream;)[B
            astore 3 /* data */
        start local 3 // byte[] data
         3: .line 284
            aload 3 /* data */
            ifnull 6
         4: .line 285
            new sun.security.provider.certpath.X509CertPath
            dup
            new java.io.ByteArrayInputStream
            dup
            aload 3 /* data */
            invokespecial java.io.ByteArrayInputStream.<init>:([B)V
            aload 2 /* encoding */
            invokespecial sun.security.provider.certpath.X509CertPath.<init>:(Ljava/io/InputStream;Ljava/lang/String;)V
         5: areturn
         6: .line 287
      StackMap locals: byte[]
      StackMap stack:
            new java.io.IOException
            dup
            ldc "Empty input"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // byte[] data
         7: .line 289
      StackMap locals: sun.security.provider.X509Factory java.io.InputStream java.lang.String
      StackMap stack: java.io.IOException
            astore 3 /* ioe */
        start local 3 // java.io.IOException ioe
         8: .line 290
            new java.security.cert.CertificateException
            dup
            aload 3 /* ioe */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            invokespecial java.security.cert.CertificateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // java.io.IOException ioe
        end local 2 // java.lang.String encoding
        end local 1 // java.io.InputStream inStream
        end local 0 // sun.security.provider.X509Factory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lsun/security/provider/X509Factory;
            0    9     1  inStream  Ljava/io/InputStream;
            0    9     2  encoding  Ljava/lang/String;
            3    7     3      data  [B
            8    9     3       ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           2     5       7  Class java.io.IOException
           6     7       7  Class java.io.IOException
    Exceptions:
      throws java.security.cert.CertificateException
    MethodParameters:
          Name  Flags
      inStream  
      encoding  

  public java.security.cert.CertPath engineGenerateCertPath(java.util.List<? extends java.security.cert.Certificate>);
    descriptor: (Ljava/util/List;)Ljava/security/cert/CertPath;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.security.provider.X509Factory this
        start local 1 // java.util.List certificates
         0: .line 313
            new sun.security.provider.certpath.X509CertPath
            dup
            aload 1 /* certificates */
            invokespecial sun.security.provider.certpath.X509CertPath.<init>:(Ljava/util/List;)V
            areturn
        end local 1 // java.util.List certificates
        end local 0 // sun.security.provider.X509Factory this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lsun/security/provider/X509Factory;
            0    1     1  certificates  Ljava/util/List<+Ljava/security/cert/Certificate;>;
    Exceptions:
      throws java.security.cert.CertificateException
    Signature: (Ljava/util/List<+Ljava/security/cert/Certificate;>;)Ljava/security/cert/CertPath;
    MethodParameters:
              Name  Flags
      certificates  

  public java.util.Iterator<java.lang.String> engineGetCertPathEncodings();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.provider.X509Factory this
         0: .line 330
            invokestatic sun.security.provider.certpath.X509CertPath.getEncodingsStatic:()Ljava/util/Iterator;
            areturn
        end local 0 // sun.security.provider.X509Factory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/provider/X509Factory;
    Signature: ()Ljava/util/Iterator<Ljava/lang/String;>;

  public java.util.Collection<? extends java.security.cert.Certificate> engineGenerateCertificates(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.provider.X509Factory this
        start local 1 // java.io.InputStream is
         0: .line 348
            aload 1 /* is */
            ifnonnull 2
         1: .line 349
            new java.security.cert.CertificateException
            dup
            ldc "Missing input stream"
            invokespecial java.security.cert.CertificateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 352
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* is */
            invokevirtual sun.security.provider.X509Factory.parseX509orPKCS7Cert:(Ljava/io/InputStream;)Ljava/util/Collection;
         3: areturn
         4: .line 353
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 2 /* ioe */
        start local 2 // java.io.IOException ioe
         5: .line 354
            new java.security.cert.CertificateException
            dup
            aload 2 /* ioe */
            invokespecial java.security.cert.CertificateException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException ioe
        end local 1 // java.io.InputStream is
        end local 0 // sun.security.provider.X509Factory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/security/provider/X509Factory;
            0    6     1    is  Ljava/io/InputStream;
            5    6     2   ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           2     3       4  Class java.io.IOException
    Exceptions:
      throws java.security.cert.CertificateException
    Signature: (Ljava/io/InputStream;)Ljava/util/Collection<+Ljava/security/cert/Certificate;>;
    MethodParameters:
      Name  Flags
      is    

  public java.security.cert.CRL engineGenerateCRL(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)Ljava/security/cert/CRL;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.security.provider.X509Factory this
        start local 1 // java.io.InputStream is
         0: .line 374
            aload 1 /* is */
            ifnonnull 3
         1: .line 376
            getstatic sun.security.provider.X509Factory.crlCache:Lsun/security/util/Cache;
            invokevirtual sun.security.util.Cache.clear:()V
         2: .line 377
            new java.security.cert.CRLException
            dup
            ldc "Missing input stream"
            invokespecial java.security.cert.CRLException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 380
      StackMap locals:
      StackMap stack:
            aload 1 /* is */
            invokestatic sun.security.provider.X509Factory.readOneBlock:(Ljava/io/InputStream;)[B
            astore 2 /* encoding */
        start local 2 // byte[] encoding
         4: .line 381
            aload 2 /* encoding */
            ifnull 13
         5: .line 382
            getstatic sun.security.provider.X509Factory.crlCache:Lsun/security/util/Cache;
            aload 2 /* encoding */
            invokestatic sun.security.provider.X509Factory.getFromCache:(Lsun/security/util/Cache;[B)Ljava/lang/Object;
            checkcast sun.security.x509.X509CRLImpl
            astore 3 /* crl */
        start local 3 // sun.security.x509.X509CRLImpl crl
         6: .line 383
            aload 3 /* crl */
            ifnull 9
         7: .line 384
            aload 3 /* crl */
         8: areturn
         9: .line 386
      StackMap locals: byte[] sun.security.x509.X509CRLImpl
      StackMap stack:
            new sun.security.x509.X509CRLImpl
            dup
            aload 2 /* encoding */
            invokespecial sun.security.x509.X509CRLImpl.<init>:([B)V
            astore 3 /* crl */
        10: .line 387
            getstatic sun.security.provider.X509Factory.crlCache:Lsun/security/util/Cache;
            aload 3 /* crl */
            invokevirtual sun.security.x509.X509CRLImpl.getEncodedInternal:()[B
            aload 3 /* crl */
            invokestatic sun.security.provider.X509Factory.addToCache:(Lsun/security/util/Cache;[BLjava/lang/Object;)V
        11: .line 388
            aload 3 /* crl */
        12: areturn
        end local 3 // sun.security.x509.X509CRLImpl crl
        13: .line 390
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            ldc "Empty input"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // byte[] encoding
        14: .line 392
      StackMap locals: sun.security.provider.X509Factory java.io.InputStream
      StackMap stack: java.io.IOException
            astore 2 /* ioe */
        start local 2 // java.io.IOException ioe
        15: .line 393
            new java.security.cert.CRLException
            dup
            aload 2 /* ioe */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            invokespecial java.security.cert.CRLException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.io.IOException ioe
        end local 1 // java.io.InputStream is
        end local 0 // sun.security.provider.X509Factory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   16     0      this  Lsun/security/provider/X509Factory;
            0   16     1        is  Ljava/io/InputStream;
            4   14     2  encoding  [B
            6   13     3       crl  Lsun/security/x509/X509CRLImpl;
           15   16     2       ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           3     8      14  Class java.io.IOException
           9    12      14  Class java.io.IOException
          13    14      14  Class java.io.IOException
    Exceptions:
      throws java.security.cert.CRLException
    MethodParameters:
      Name  Flags
      is    

  public java.util.Collection<? extends java.security.cert.CRL> engineGenerateCRLs(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.provider.X509Factory this
        start local 1 // java.io.InputStream is
         0: .line 412
            aload 1 /* is */
            ifnonnull 2
         1: .line 413
            new java.security.cert.CRLException
            dup
            ldc "Missing input stream"
            invokespecial java.security.cert.CRLException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 416
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* is */
            invokevirtual sun.security.provider.X509Factory.parseX509orPKCS7CRL:(Ljava/io/InputStream;)Ljava/util/Collection;
         3: areturn
         4: .line 417
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 2 /* ioe */
        start local 2 // java.io.IOException ioe
         5: .line 418
            new java.security.cert.CRLException
            dup
            aload 2 /* ioe */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            invokespecial java.security.cert.CRLException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.io.IOException ioe
        end local 1 // java.io.InputStream is
        end local 0 // sun.security.provider.X509Factory this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/security/provider/X509Factory;
            0    6     1    is  Ljava/io/InputStream;
            5    6     2   ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           2     3       4  Class java.io.IOException
    Exceptions:
      throws java.security.cert.CRLException
    Signature: (Ljava/io/InputStream;)Ljava/util/Collection<+Ljava/security/cert/CRL;>;
    MethodParameters:
      Name  Flags
      is    

  private java.util.Collection<? extends java.security.cert.Certificate> parseX509orPKCS7Cert(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)Ljava/util/Collection;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // sun.security.provider.X509Factory this
        start local 1 // java.io.InputStream is
         0: .line 433
            new java.io.PushbackInputStream
            dup
            aload 1 /* is */
            invokespecial java.io.PushbackInputStream.<init>:(Ljava/io/InputStream;)V
            astore 4 /* pbis */
        start local 4 // java.io.PushbackInputStream pbis
         1: .line 434
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 5 /* coll */
        start local 5 // java.util.Collection coll
         2: .line 440
            aload 4 /* pbis */
            invokevirtual java.io.PushbackInputStream.read:()I
            istore 2 /* peekByte */
        start local 2 // int peekByte
         3: .line 441
            iload 2 /* peekByte */
            iconst_m1
            if_icmpne 5
         4: .line 442
            new java.util.ArrayList
            dup
            iconst_0
            invokespecial java.util.ArrayList.<init>:(I)V
            areturn
         5: .line 444
      StackMap locals: sun.security.provider.X509Factory java.io.InputStream int top java.io.PushbackInputStream java.util.Collection
      StackMap stack:
            aload 4 /* pbis */
            iload 2 /* peekByte */
            invokevirtual java.io.PushbackInputStream.unread:(I)V
         6: .line 445
            aload 4 /* pbis */
            invokestatic sun.security.provider.X509Factory.readOneBlock:(Ljava/io/InputStream;)[B
            astore 3 /* data */
        start local 3 // byte[] data
         7: .line 451
            aload 3 /* data */
            ifnonnull 9
         8: .line 452
            new java.security.cert.CertificateException
            dup
            ldc "No certificate data found"
            invokespecial java.security.cert.CertificateException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 455
      StackMap locals: sun.security.provider.X509Factory java.io.InputStream int byte[] java.io.PushbackInputStream java.util.Collection
      StackMap stack:
            new sun.security.pkcs.PKCS7
            dup
            aload 3 /* data */
            invokespecial sun.security.pkcs.PKCS7.<init>:([B)V
            astore 6 /* pkcs7 */
        start local 6 // sun.security.pkcs.PKCS7 pkcs7
        10: .line 456
            aload 6 /* pkcs7 */
            invokevirtual sun.security.pkcs.PKCS7.getCertificates:()[Ljava/security/cert/X509Certificate;
            astore 7 /* certs */
        start local 7 // java.security.cert.X509Certificate[] certs
        11: .line 458
            aload 7 /* certs */
            ifnull 14
        12: .line 459
            aload 7 /* certs */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
        13: areturn
        14: .line 462
      StackMap locals: sun.security.pkcs.PKCS7 java.security.cert.X509Certificate[]
      StackMap stack:
            new java.util.ArrayList
            dup
            iconst_0
            invokespecial java.util.ArrayList.<init>:(I)V
        15: areturn
        end local 7 // java.security.cert.X509Certificate[] certs
        end local 6 // sun.security.pkcs.PKCS7 pkcs7
        16: .line 464
      StackMap locals: sun.security.provider.X509Factory java.io.InputStream int byte[] java.io.PushbackInputStream java.util.Collection
      StackMap stack: sun.security.pkcs.ParsingException
            pop
        17: .line 465
            goto 20
        18: .line 466
      StackMap locals:
      StackMap stack:
            aload 5 /* coll */
            new sun.security.x509.X509CertImpl
            dup
            aload 3 /* data */
            invokespecial sun.security.x509.X509CertImpl.<init>:([B)V
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
        19: .line 467
            aload 4 /* pbis */
            invokestatic sun.security.provider.X509Factory.readOneBlock:(Ljava/io/InputStream;)[B
            astore 3 /* data */
        20: .line 465
      StackMap locals:
      StackMap stack:
            aload 3 /* data */
            ifnonnull 18
        21: .line 470
            aload 5 /* coll */
            areturn
        end local 5 // java.util.Collection coll
        end local 4 // java.io.PushbackInputStream pbis
        end local 3 // byte[] data
        end local 2 // int peekByte
        end local 1 // java.io.InputStream is
        end local 0 // sun.security.provider.X509Factory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   22     0      this  Lsun/security/provider/X509Factory;
            0   22     1        is  Ljava/io/InputStream;
            3   22     2  peekByte  I
            7   22     3      data  [B
            1   22     4      pbis  Ljava/io/PushbackInputStream;
            2   22     5      coll  Ljava/util/Collection<Lsun/security/x509/X509CertImpl;>;
           10   16     6     pkcs7  Lsun/security/pkcs/PKCS7;
           11   16     7     certs  [Ljava/security/cert/X509Certificate;
      Exception table:
        from    to  target  type
           9    13      16  Class sun.security.pkcs.ParsingException
          14    15      16  Class sun.security.pkcs.ParsingException
    Exceptions:
      throws java.security.cert.CertificateException, java.io.IOException
    Signature: (Ljava/io/InputStream;)Ljava/util/Collection<+Ljava/security/cert/Certificate;>;
    MethodParameters:
      Name  Flags
      is    

  private java.util.Collection<? extends java.security.cert.CRL> parseX509orPKCS7CRL(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)Ljava/util/Collection;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // sun.security.provider.X509Factory this
        start local 1 // java.io.InputStream is
         0: .line 484
            new java.io.PushbackInputStream
            dup
            aload 1 /* is */
            invokespecial java.io.PushbackInputStream.<init>:(Ljava/io/InputStream;)V
            astore 4 /* pbis */
        start local 4 // java.io.PushbackInputStream pbis
         1: .line 485
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 5 /* coll */
        start local 5 // java.util.Collection coll
         2: .line 491
            aload 4 /* pbis */
            invokevirtual java.io.PushbackInputStream.read:()I
            istore 2 /* peekByte */
        start local 2 // int peekByte
         3: .line 492
            iload 2 /* peekByte */
            iconst_m1
            if_icmpne 5
         4: .line 493
            new java.util.ArrayList
            dup
            iconst_0
            invokespecial java.util.ArrayList.<init>:(I)V
            areturn
         5: .line 495
      StackMap locals: sun.security.provider.X509Factory java.io.InputStream int top java.io.PushbackInputStream java.util.Collection
      StackMap stack:
            aload 4 /* pbis */
            iload 2 /* peekByte */
            invokevirtual java.io.PushbackInputStream.unread:(I)V
         6: .line 496
            aload 4 /* pbis */
            invokestatic sun.security.provider.X509Factory.readOneBlock:(Ljava/io/InputStream;)[B
            astore 3 /* data */
        start local 3 // byte[] data
         7: .line 502
            aload 3 /* data */
            ifnonnull 9
         8: .line 503
            new java.security.cert.CRLException
            dup
            ldc "No CRL data found"
            invokespecial java.security.cert.CRLException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 506
      StackMap locals: sun.security.provider.X509Factory java.io.InputStream int byte[] java.io.PushbackInputStream java.util.Collection
      StackMap stack:
            new sun.security.pkcs.PKCS7
            dup
            aload 3 /* data */
            invokespecial sun.security.pkcs.PKCS7.<init>:([B)V
            astore 6 /* pkcs7 */
        start local 6 // sun.security.pkcs.PKCS7 pkcs7
        10: .line 507
            aload 6 /* pkcs7 */
            invokevirtual sun.security.pkcs.PKCS7.getCRLs:()[Ljava/security/cert/X509CRL;
            astore 7 /* crls */
        start local 7 // java.security.cert.X509CRL[] crls
        11: .line 509
            aload 7 /* crls */
            ifnull 14
        12: .line 510
            aload 7 /* crls */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
        13: areturn
        14: .line 513
      StackMap locals: sun.security.pkcs.PKCS7 java.security.cert.X509CRL[]
      StackMap stack:
            new java.util.ArrayList
            dup
            iconst_0
            invokespecial java.util.ArrayList.<init>:(I)V
        15: areturn
        end local 7 // java.security.cert.X509CRL[] crls
        end local 6 // sun.security.pkcs.PKCS7 pkcs7
        16: .line 515
      StackMap locals: sun.security.provider.X509Factory java.io.InputStream int byte[] java.io.PushbackInputStream java.util.Collection
      StackMap stack: sun.security.pkcs.ParsingException
            pop
        17: .line 516
            goto 20
        18: .line 517
      StackMap locals:
      StackMap stack:
            aload 5 /* coll */
            new sun.security.x509.X509CRLImpl
            dup
            aload 3 /* data */
            invokespecial sun.security.x509.X509CRLImpl.<init>:([B)V
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
        19: .line 518
            aload 4 /* pbis */
            invokestatic sun.security.provider.X509Factory.readOneBlock:(Ljava/io/InputStream;)[B
            astore 3 /* data */
        20: .line 516
      StackMap locals:
      StackMap stack:
            aload 3 /* data */
            ifnonnull 18
        21: .line 521
            aload 5 /* coll */
            areturn
        end local 5 // java.util.Collection coll
        end local 4 // java.io.PushbackInputStream pbis
        end local 3 // byte[] data
        end local 2 // int peekByte
        end local 1 // java.io.InputStream is
        end local 0 // sun.security.provider.X509Factory this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   22     0      this  Lsun/security/provider/X509Factory;
            0   22     1        is  Ljava/io/InputStream;
            3   22     2  peekByte  I
            7   22     3      data  [B
            1   22     4      pbis  Ljava/io/PushbackInputStream;
            2   22     5      coll  Ljava/util/Collection<Lsun/security/x509/X509CRLImpl;>;
           10   16     6     pkcs7  Lsun/security/pkcs/PKCS7;
           11   16     7      crls  [Ljava/security/cert/X509CRL;
      Exception table:
        from    to  target  type
           9    13      16  Class sun.security.pkcs.ParsingException
          14    15      16  Class sun.security.pkcs.ParsingException
    Exceptions:
      throws java.security.cert.CRLException, java.io.IOException
    Signature: (Ljava/io/InputStream;)Ljava/util/Collection<+Ljava/security/cert/CRL;>;
    MethodParameters:
      Name  Flags
      is    

  private static byte[] readOneBlock(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)[B
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=10, args_size=1
        start local 0 // java.io.InputStream is
         0: .line 539
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 1 /* c */
        start local 1 // int c
         1: .line 540
            iload 1 /* c */
            iconst_m1
            if_icmpne 3
         2: .line 541
            aconst_null
            areturn
         3: .line 543
      StackMap locals: int
      StackMap stack:
            iload 1 /* c */
            bipush 48
            if_icmpne 8
         4: .line 544
            new java.io.ByteArrayOutputStream
            dup
            sipush 2048
            invokespecial java.io.ByteArrayOutputStream.<init>:(I)V
            astore 2 /* bout */
        start local 2 // java.io.ByteArrayOutputStream bout
         5: .line 545
            aload 2 /* bout */
            iload 1 /* c */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         6: .line 546
            aload 0 /* is */
            aload 2 /* bout */
            iload 1 /* c */
            invokestatic sun.security.provider.X509Factory.readBERInternal:(Ljava/io/InputStream;Ljava/io/ByteArrayOutputStream;I)I
            pop
         7: .line 547
            aload 2 /* bout */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            areturn
        end local 2 // java.io.ByteArrayOutputStream bout
         8: .line 550
      StackMap locals:
      StackMap stack:
            sipush 2048
            newarray 5
            astore 2 /* data */
        start local 2 // char[] data
         9: .line 551
            iconst_0
            istore 3 /* pos */
        start local 3 // int pos
        10: .line 554
            iload 1 /* c */
            bipush 45
            if_icmpne 11
            iconst_1
            goto 12
      StackMap locals: char[] int
      StackMap stack:
        11: iconst_0
      StackMap locals:
      StackMap stack: int
        12: istore 4 /* hyphen */
        start local 4 // int hyphen
        13: .line 555
            iload 1 /* c */
            bipush 45
            if_icmpne 14
            iconst_m1
            goto 15
      StackMap locals: int
      StackMap stack:
        14: iload 1 /* c */
      StackMap locals:
      StackMap stack: int
        15: istore 5 /* last */
        start local 5 // int last
        16: .line 557
      StackMap locals: int
      StackMap stack:
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 6 /* next */
        start local 6 // int next
        17: .line 558
            iload 6 /* next */
            iconst_m1
            if_icmpne 19
        18: .line 561
            aconst_null
            areturn
        19: .line 563
      StackMap locals: int
      StackMap stack:
            iload 6 /* next */
            bipush 45
            if_icmpne 22
        20: .line 564
            iinc 4 /* hyphen */ 1
        21: .line 565
            goto 24
        22: .line 566
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* hyphen */
        23: .line 567
            iload 6 /* next */
            istore 5 /* last */
        24: .line 569
      StackMap locals:
      StackMap stack:
            iload 4 /* hyphen */
            iconst_5
            if_icmpne 16
            iload 5 /* last */
            iconst_m1
            if_icmpeq 25
            iload 5 /* last */
            bipush 13
            if_icmpeq 25
            iload 5 /* last */
            bipush 10
            if_icmpne 16
        end local 6 // int next
        25: .line 576
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuffer
            dup
            ldc "-----"
            invokespecial java.lang.StringBuffer.<init>:(Ljava/lang/String;)V
            astore 7 /* header */
        start local 7 // java.lang.StringBuffer header
        26: .line 578
      StackMap locals: java.io.InputStream int char[] int int int top java.lang.StringBuffer
      StackMap stack:
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 8 /* next */
        start local 8 // int next
        27: .line 579
            iload 8 /* next */
            iconst_m1
            if_icmpne 29
        28: .line 580
            new java.io.IOException
            dup
            ldc "Incomplete data"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        29: .line 582
      StackMap locals: int
      StackMap stack:
            iload 8 /* next */
            bipush 10
            if_icmpne 32
        30: .line 583
            bipush 10
            istore 6 /* end */
        start local 6 // int end
        31: .line 584
            goto 44
        end local 6 // int end
        32: .line 586
      StackMap locals:
      StackMap stack:
            iload 8 /* next */
            bipush 13
            if_icmpne 42
        33: .line 587
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 8 /* next */
        34: .line 588
            iload 8 /* next */
            iconst_m1
            if_icmpne 36
        35: .line 589
            new java.io.IOException
            dup
            ldc "Incomplete data"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        36: .line 591
      StackMap locals:
      StackMap stack:
            iload 8 /* next */
            bipush 10
            if_icmpne 39
        37: .line 592
            bipush 10
            istore 6 /* end */
        start local 6 // int end
        38: .line 593
            goto 44
        end local 6 // int end
        39: .line 594
      StackMap locals:
      StackMap stack:
            bipush 13
            istore 6 /* end */
        start local 6 // int end
        40: .line 595
            aload 2 /* data */
            iload 3 /* pos */
            iinc 3 /* pos */ 1
            iload 8 /* next */
            i2c
            castore
        41: .line 597
            goto 44
        end local 6 // int end
        42: .line 599
      StackMap locals:
      StackMap stack:
            aload 7 /* header */
            iload 8 /* next */
            i2c
            invokevirtual java.lang.StringBuffer.append:(C)Ljava/lang/StringBuffer;
            pop
        end local 8 // int next
        43: .line 577
            goto 26
        start local 6 // int end
        44: .line 604
      StackMap locals: java.io.InputStream int char[] int int int int java.lang.StringBuffer
      StackMap stack:
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 8 /* next */
        start local 8 // int next
        45: .line 605
            iload 8 /* next */
            iconst_m1
            if_icmpne 47
        46: .line 606
            new java.io.IOException
            dup
            ldc "Incomplete data"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        47: .line 608
      StackMap locals: int
      StackMap stack:
            iload 8 /* next */
            bipush 45
            if_icmpeq 52
        48: .line 609
            aload 2 /* data */
            iload 3 /* pos */
            iinc 3 /* pos */ 1
            iload 8 /* next */
            i2c
            castore
        49: .line 610
            iload 3 /* pos */
            aload 2 /* data */
            arraylength
            if_icmplt 44
        50: .line 611
            aload 2 /* data */
            aload 2 /* data */
            arraylength
            sipush 1024
            iadd
            invokestatic java.util.Arrays.copyOf:([CI)[C
            astore 2 /* data */
        end local 8 // int next
        51: .line 603
            goto 44
        52: .line 619
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuffer
            dup
            ldc "-"
            invokespecial java.lang.StringBuffer.<init>:(Ljava/lang/String;)V
            astore 8 /* footer */
        start local 8 // java.lang.StringBuffer footer
        53: .line 621
      StackMap locals: java.lang.StringBuffer
      StackMap stack:
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 9 /* next */
        start local 9 // int next
        54: .line 624
            iload 9 /* next */
            iconst_m1
            if_icmpeq 58
            iload 9 /* next */
            iload 6 /* end */
            if_icmpeq 58
            iload 9 /* next */
            bipush 10
            if_icmpne 56
        55: .line 625
            goto 58
        56: .line 627
      StackMap locals: int
      StackMap stack:
            iload 9 /* next */
            bipush 13
            if_icmpeq 53
            aload 8 /* footer */
            iload 9 /* next */
            i2c
            invokevirtual java.lang.StringBuffer.append:(C)Ljava/lang/StringBuffer;
            pop
        end local 9 // int next
        57: .line 620
            goto 53
        58: .line 630
      StackMap locals:
      StackMap stack:
            aload 7 /* header */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            aload 8 /* footer */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            invokestatic sun.security.provider.X509Factory.checkHeaderFooter:(Ljava/lang/String;Ljava/lang/String;)V
        59: .line 632
            new sun.misc.BASE64Decoder
            dup
            invokespecial sun.misc.BASE64Decoder.<init>:()V
            astore 9 /* decoder */
        start local 9 // sun.misc.BASE64Decoder decoder
        60: .line 633
            aload 9 /* decoder */
            new java.lang.String
            dup
            aload 2 /* data */
            iconst_0
            iload 3 /* pos */
            invokespecial java.lang.String.<init>:([CII)V
            invokevirtual sun.misc.BASE64Decoder.decodeBuffer:(Ljava/lang/String;)[B
            areturn
        end local 9 // sun.misc.BASE64Decoder decoder
        end local 8 // java.lang.StringBuffer footer
        end local 7 // java.lang.StringBuffer header
        end local 6 // int end
        end local 5 // int last
        end local 4 // int hyphen
        end local 3 // int pos
        end local 2 // char[] data
        end local 1 // int c
        end local 0 // java.io.InputStream is
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   61     0       is  Ljava/io/InputStream;
            1   61     1        c  I
            5    8     2     bout  Ljava/io/ByteArrayOutputStream;
            9   61     2     data  [C
           10   61     3      pos  I
           13   61     4   hyphen  I
           16   61     5     last  I
           17   25     6     next  I
           31   32     6      end  I
           38   39     6      end  I
           40   42     6      end  I
           44   61     6      end  I
           26   61     7   header  Ljava/lang/StringBuffer;
           27   43     8     next  I
           45   51     8     next  I
           53   61     8   footer  Ljava/lang/StringBuffer;
           54   57     9     next  I
           60   61     9  decoder  Lsun/misc/BASE64Decoder;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      is    

  private static void checkHeaderFooter(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // java.lang.String header
        start local 1 // java.lang.String footer
         0: .line 639
            aload 0 /* header */
            invokevirtual java.lang.String.length:()I
            bipush 16
            if_icmplt 2
            aload 0 /* header */
            ldc "-----BEGIN "
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 2
         1: .line 640
            aload 0 /* header */
            ldc "-----"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifne 3
         2: .line 641
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal header: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* header */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 643
      StackMap locals:
      StackMap stack:
            aload 1 /* footer */
            invokevirtual java.lang.String.length:()I
            bipush 14
            if_icmplt 5
            aload 1 /* footer */
            ldc "-----END "
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 5
         4: .line 644
            aload 1 /* footer */
            ldc "-----"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifne 6
         5: .line 645
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal footer: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* footer */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 647
      StackMap locals:
      StackMap stack:
            aload 0 /* header */
            bipush 11
            aload 0 /* header */
            invokevirtual java.lang.String.length:()I
            iconst_5
            isub
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 2 /* headerType */
        start local 2 // java.lang.String headerType
         7: .line 648
            aload 1 /* footer */
            bipush 9
            aload 1 /* footer */
            invokevirtual java.lang.String.length:()I
            iconst_5
            isub
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 3 /* footerType */
        start local 3 // java.lang.String footerType
         8: .line 649
            aload 2 /* headerType */
            aload 3 /* footerType */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 12
         9: .line 650
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Header and footer do not match: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        10: .line 651
            aload 0 /* header */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* footer */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        11: .line 650
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 653
      StackMap locals: java.lang.String java.lang.String
      StackMap stack:
            return
        end local 3 // java.lang.String footerType
        end local 2 // java.lang.String headerType
        end local 1 // java.lang.String footer
        end local 0 // java.lang.String header
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   13     0      header  Ljava/lang/String;
            0   13     1      footer  Ljava/lang/String;
            7   13     2  headerType  Ljava/lang/String;
            8   13     3  footerType  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      header  
      footer  

  private static int readBERInternal(java.io.InputStream, java.io.ByteArrayOutputStream, int);
    descriptor: (Ljava/io/InputStream;Ljava/io/ByteArrayOutputStream;I)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=9, args_size=3
        start local 0 // java.io.InputStream is
        start local 1 // java.io.ByteArrayOutputStream bout
        start local 2 // int tag
         0: .line 668
            iload 2 /* tag */
            iconst_m1
            if_icmpne 7
         1: .line 669
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 2 /* tag */
         2: .line 670
            iload 2 /* tag */
            iconst_m1
            if_icmpne 4
         3: .line 671
            new java.io.IOException
            dup
            ldc "BER/DER tag info absent"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 673
      StackMap locals:
      StackMap stack:
            iload 2 /* tag */
            bipush 31
            iand
            bipush 31
            if_icmpne 6
         5: .line 674
            new java.io.IOException
            dup
            ldc "Multi octets tag not supported"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 676
      StackMap locals:
      StackMap stack:
            aload 1 /* bout */
            iload 2 /* tag */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         7: .line 679
      StackMap locals:
      StackMap stack:
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 3 /* n */
        start local 3 // int n
         8: .line 680
            iload 3 /* n */
            iconst_m1
            if_icmpne 10
         9: .line 681
            new java.io.IOException
            dup
            ldc "BER/DER length info absent"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 683
      StackMap locals: int
      StackMap stack:
            aload 1 /* bout */
            iload 3 /* n */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        11: .line 687
            iload 3 /* n */
            sipush 128
            if_icmpne 19
        12: .line 688
            iload 2 /* tag */
            bipush 32
            iand
            bipush 32
            if_icmpeq 16
        13: .line 689
            new java.io.IOException
            dup
        14: .line 690
            ldc "Non constructed encoding must have definite length"
        15: .line 689
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 693
      StackMap locals:
      StackMap stack:
            aload 0 /* is */
            aload 1 /* bout */
            iconst_m1
            invokestatic sun.security.provider.X509Factory.readBERInternal:(Ljava/io/InputStream;Ljava/io/ByteArrayOutputStream;I)I
            istore 5 /* subTag */
        start local 5 // int subTag
        17: .line 694
            iload 5 /* subTag */
            ifne 16
        end local 5 // int subTag
        18: .line 698
            goto 70
        19: .line 699
      StackMap locals:
      StackMap stack:
            iload 3 /* n */
            sipush 128
            if_icmpge 22
        20: .line 700
            iload 3 /* n */
            istore 4 /* length */
        start local 4 // int length
        21: .line 701
            goto 68
        end local 4 // int length
      StackMap locals:
      StackMap stack:
        22: iload 3 /* n */
            sipush 129
            if_icmpne 28
        23: .line 702
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 4 /* length */
        start local 4 // int length
        24: .line 703
            iload 4 /* length */
            iconst_m1
            if_icmpne 26
        25: .line 704
            new java.io.IOException
            dup
            ldc "Incomplete BER/DER length info"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        26: .line 706
      StackMap locals: int
      StackMap stack:
            aload 1 /* bout */
            iload 4 /* length */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        27: .line 707
            goto 68
        end local 4 // int length
      StackMap locals:
      StackMap stack:
        28: iload 3 /* n */
            sipush 130
            if_icmpne 37
        29: .line 708
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 5 /* highByte */
        start local 5 // int highByte
        30: .line 709
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 6 /* lowByte */
        start local 6 // int lowByte
        31: .line 710
            iload 6 /* lowByte */
            iconst_m1
            if_icmpne 33
        32: .line 711
            new java.io.IOException
            dup
            ldc "Incomplete BER/DER length info"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        33: .line 713
      StackMap locals: java.io.InputStream java.io.ByteArrayOutputStream int int top int int
      StackMap stack:
            aload 1 /* bout */
            iload 5 /* highByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        34: .line 714
            aload 1 /* bout */
            iload 6 /* lowByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        35: .line 715
            iload 5 /* highByte */
            bipush 8
            ishl
            iload 6 /* lowByte */
            ior
            istore 4 /* length */
        end local 6 // int lowByte
        end local 5 // int highByte
        start local 4 // int length
        36: .line 716
            goto 68
        end local 4 // int length
      StackMap locals: java.io.InputStream java.io.ByteArrayOutputStream int int
      StackMap stack:
        37: iload 3 /* n */
            sipush 131
            if_icmpne 48
        38: .line 717
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 5 /* highByte */
        start local 5 // int highByte
        39: .line 718
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 6 /* midByte */
        start local 6 // int midByte
        40: .line 719
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 7 /* lowByte */
        start local 7 // int lowByte
        41: .line 720
            iload 7 /* lowByte */
            iconst_m1
            if_icmpne 43
        42: .line 721
            new java.io.IOException
            dup
            ldc "Incomplete BER/DER length info"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        43: .line 723
      StackMap locals: java.io.InputStream java.io.ByteArrayOutputStream int int top int int int
      StackMap stack:
            aload 1 /* bout */
            iload 5 /* highByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        44: .line 724
            aload 1 /* bout */
            iload 6 /* midByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        45: .line 725
            aload 1 /* bout */
            iload 7 /* lowByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        46: .line 726
            iload 5 /* highByte */
            bipush 16
            ishl
            iload 6 /* midByte */
            bipush 8
            ishl
            ior
            iload 7 /* lowByte */
            ior
            istore 4 /* length */
        end local 7 // int lowByte
        end local 6 // int midByte
        end local 5 // int highByte
        start local 4 // int length
        47: .line 727
            goto 68
        end local 4 // int length
      StackMap locals: java.io.InputStream java.io.ByteArrayOutputStream int int
      StackMap stack:
        48: iload 3 /* n */
            sipush 132
            if_icmpne 67
        49: .line 728
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 5 /* highByte */
        start local 5 // int highByte
        50: .line 729
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 6 /* nextByte */
        start local 6 // int nextByte
        51: .line 730
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 7 /* midByte */
        start local 7 // int midByte
        52: .line 731
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 8 /* lowByte */
        start local 8 // int lowByte
        53: .line 732
            iload 8 /* lowByte */
            iconst_m1
            if_icmpne 55
        54: .line 733
            new java.io.IOException
            dup
            ldc "Incomplete BER/DER length info"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        55: .line 735
      StackMap locals: java.io.InputStream java.io.ByteArrayOutputStream int int top int int int int
      StackMap stack:
            iload 5 /* highByte */
            bipush 127
            if_icmple 57
        56: .line 736
            new java.io.IOException
            dup
            ldc "Invalid BER/DER data (a little huge?)"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        57: .line 738
      StackMap locals:
      StackMap stack:
            aload 1 /* bout */
            iload 5 /* highByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        58: .line 739
            aload 1 /* bout */
            iload 6 /* nextByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        59: .line 740
            aload 1 /* bout */
            iload 7 /* midByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        60: .line 741
            aload 1 /* bout */
            iload 8 /* lowByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        61: .line 742
            iload 5 /* highByte */
            bipush 24
            ishl
            iload 6 /* nextByte */
            bipush 16
            ishl
            ior
        62: .line 743
            iload 7 /* midByte */
            bipush 8
            ishl
        63: .line 742
            ior
        64: .line 743
            iload 8 /* lowByte */
        65: .line 742
            ior
            istore 4 /* length */
        end local 8 // int lowByte
        end local 7 // int midByte
        end local 6 // int nextByte
        end local 5 // int highByte
        start local 4 // int length
        66: .line 744
            goto 68
        end local 4 // int length
        67: .line 745
      StackMap locals: java.io.InputStream java.io.ByteArrayOutputStream int int
      StackMap stack:
            new java.io.IOException
            dup
            ldc "Invalid BER/DER data (too huge?)"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        start local 4 // int length
        68: .line 747
      StackMap locals: int
      StackMap stack:
            aload 0 /* is */
            aload 1 /* bout */
            iload 4 /* length */
            invokestatic sun.security.provider.X509Factory.readFully:(Ljava/io/InputStream;Ljava/io/ByteArrayOutputStream;I)I
            iload 4 /* length */
            if_icmpeq 70
        69: .line 748
            new java.io.IOException
            dup
            ldc "Incomplete BER/DER data"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // int length
        70: .line 751
      StackMap locals:
      StackMap stack:
            iload 2 /* tag */
            ireturn
        end local 3 // int n
        end local 2 // int tag
        end local 1 // java.io.ByteArrayOutputStream bout
        end local 0 // java.io.InputStream is
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   71     0        is  Ljava/io/InputStream;
            0   71     1      bout  Ljava/io/ByteArrayOutputStream;
            0   71     2       tag  I
            8   71     3         n  I
           21   22     4    length  I
           24   28     4    length  I
           36   37     4    length  I
           47   48     4    length  I
           66   67     4    length  I
           68   70     4    length  I
           17   18     5    subTag  I
           30   36     5  highByte  I
           31   36     6   lowByte  I
           39   47     5  highByte  I
           40   47     6   midByte  I
           41   47     7   lowByte  I
           50   66     5  highByte  I
           51   66     6  nextByte  I
           52   66     7   midByte  I
           53   66     8   lowByte  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      is    
      bout  
      tag   
}
SourceFile: "X509Factory.java"
InnerClasses:
  public EqualByteArray = sun.security.util.Cache$EqualByteArray of sun.security.util.Cache