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<java.lang.Object, sun.security.x509.X509CertImpl> certCache;
    descriptor: Lsun/security/util/Cache;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Lsun/security/util/Cache<Ljava/lang/Object;Lsun/security/x509/X509CertImpl;>;

  private static final sun.security.util.Cache<java.lang.Object, sun.security.x509.X509CRLImpl> crlCache;
    descriptor: Lsun/security/util/Cache;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Lsun/security/util/Cache<Ljava/lang/Object;Lsun/security/x509/X509CRLImpl;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 73
            sipush 750
            invokestatic sun.security.util.Cache.newSoftMemoryCache:(I)Lsun/security/util/Cache;
         1: .line 72
            putstatic sun.security.provider.X509Factory.certCache:Lsun/security/util/Cache;
         2: .line 75
            sipush 750
            invokestatic sun.security.util.Cache.newSoftMemoryCache:(I)Lsun/security/util/Cache;
         3: .line 74
            putstatic sun.security.provider.X509Factory.crlCache:Lsun/security/util/Cache;
         4: .line 75
            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 65
            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 92
            aload 1 /* is */
            ifnonnull 4
         1: .line 94
            getstatic sun.security.provider.X509Factory.certCache:Lsun/security/util/Cache;
            invokevirtual sun.security.util.Cache.clear:()V
         2: .line 95
            invokestatic sun.security.provider.certpath.X509CertificatePair.clearCache:()V
         3: .line 96
            new java.security.cert.CertificateException
            dup
            ldc "Missing input stream"
            invokespecial java.security.cert.CertificateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 99
      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 100
            aload 2 /* encoding */
            ifnull 15
         6: .line 101
            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 102
            aload 3 /* cert */
            ifnull 10
         8: .line 103
            aload 3 /* cert */
         9: areturn
        10: .line 105
      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 106
            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 108
            aload 0 /* this */
            aload 3 /* cert */
            invokevirtual sun.security.provider.X509Factory.commitEvent:(Lsun/security/x509/X509CertImpl;)V
        13: .line 109
            aload 3 /* cert */
        14: areturn
        end local 3 // sun.security.x509.X509CertImpl cert
        15: .line 111
      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
        16: .line 113
      StackMap locals: sun.security.provider.X509Factory java.io.InputStream
      StackMap stack: java.io.IOException
            astore 2 /* ioe */
        start local 2 // java.io.IOException ioe
        17: .line 114
            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
        18: .line 115
            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 */
        19: .line 114
            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   20     0      this  Lsun/security/provider/X509Factory;
            0   20     1        is  Ljava/io/InputStream;
            5   16     2  encoding  [B
            7   15     3      cert  Lsun/security/x509/X509CertImpl;
           17   20     2       ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           4     9      16  Class java.io.IOException
          10    14      16  Class java.io.IOException
          15    16      16  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 125
            iconst_0
            istore 3 /* read */
        start local 3 // int read
         1: .line 126
            sipush 2048
            newarray 8
            astore 4 /* buffer */
        start local 4 // byte[] buffer
         2: .line 127
            goto 11
         3: .line 128
      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 129
            iload 5 /* n */
            ifgt 8
         7: .line 130
            goto 12
         8: .line 132
      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 133
            iload 3 /* read */
            iload 5 /* n */
            iadd
            istore 3 /* read */
        10: .line 134
            iload 2 /* length */
            iload 5 /* n */
            isub
            istore 2 /* length */
        end local 5 // int n
        11: .line 127
      StackMap locals:
      StackMap stack:
            iload 2 /* length */
            ifgt 3
        12: .line 136
      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 160
            aload 0 /* c */
            ifnonnull 2
         1: .line 161
            aconst_null
            areturn
         2: .line 163
      StackMap locals:
      StackMap stack:
            aload 0 /* c */
            instanceof sun.security.x509.X509CertImpl
            istore 1 /* isImpl */
        start local 1 // boolean isImpl
         3: .line 165
            iload 1 /* isImpl */
            ifeq 6
         4: .line 166
            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 167
            goto 7
        end local 2 // byte[] encoding
         6: .line 168
      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 170
      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 171
            aload 3 /* newC */
            ifnull 10
         9: .line 172
            aload 3 /* newC */
            areturn
        10: .line 174
      StackMap locals: sun.security.x509.X509CertImpl
      StackMap stack:
            iload 1 /* isImpl */
            ifeq 13
        11: .line 175
            aload 0 /* c */
            checkcast sun.security.x509.X509CertImpl
            astore 3 /* newC */
        12: .line 176
            goto 15
        13: .line 177
      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 178
            aload 3 /* newC */
            invokevirtual sun.security.x509.X509CertImpl.getEncodedInternal:()[B
            astore 2 /* encoding */
        15: .line 180
      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 181
            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 196
            aload 0 /* c */
            ifnonnull 2
         1: .line 197
            aconst_null
            areturn
         2: .line 199
      StackMap locals:
      StackMap stack:
            aload 0 /* c */
            instanceof sun.security.x509.X509CRLImpl
            istore 1 /* isImpl */
        start local 1 // boolean isImpl
         3: .line 201
            iload 1 /* isImpl */
            ifeq 6
         4: .line 202
            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 203
            goto 7
        end local 2 // byte[] encoding
         6: .line 204
      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 206
      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 207
            aload 3 /* newC */
            ifnull 10
         9: .line 208
            aload 3 /* newC */
            areturn
        10: .line 210
      StackMap locals: sun.security.x509.X509CRLImpl
      StackMap stack:
            iload 1 /* isImpl */
            ifeq 13
        11: .line 211
            aload 0 /* c */
            checkcast sun.security.x509.X509CRLImpl
            astore 3 /* newC */
        12: .line 212
            goto 15
        13: .line 213
      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 214
            aload 3 /* newC */
            invokevirtual sun.security.x509.X509CRLImpl.getEncodedInternal:()[B
            astore 2 /* encoding */
        15: .line 216
      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 217
            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 <K, V> V getFromCache(sun.security.util.Cache<K, V>, );
    descriptor: (Lsun/security/util/Cache;[B)Ljava/lang/Object;
    flags: (0x002a) ACC_PRIVATE, ACC_STATIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.util.Cache cache
        start local 1 // byte[] encoding
         0: .line 225
            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 226
            aload 0 /* cache */
            aload 2 /* key */
            invokevirtual sun.security.util.Cache.get:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        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    2     0     cache  Lsun/security/util/Cache<TK;TV;>;
            0    2     1  encoding  [B
            1    2     2       key  Ljava/lang/Object;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(Lsun/security/util/Cache<TK;TV;>;[B)TV;
    MethodParameters:
          Name  Flags
      cache     
      encoding  

  private static synchronized <V> void addToCache(sun.security.util.Cache<java.lang.Object, V>, byte[], );
    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 234
            aload 1 /* encoding */
            arraylength
            ldc 4194304
            if_icmple 2
         1: .line 235
            return
         2: .line 237
      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 238
            aload 0 /* cache */
            aload 3 /* key */
            aload 2 /* value */
            invokevirtual sun.security.util.Cache.put:(Ljava/lang/Object;Ljava/lang/Object;)V
         4: .line 239
            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<Ljava/lang/Object;TV;>;
            0    5     1  encoding  [B
            0    5     2     value  TV;
            3    5     3       key  Ljava/lang/Object;
    Signature: <V:Ljava/lang/Object;>(Lsun/security/util/Cache<Ljava/lang/Object;TV;>;[BTV;)V
    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 256
            aload 1 /* inStream */
            ifnonnull 2
         1: .line 257
            new java.security.cert.CertificateException
            dup
            ldc "Missing input stream"
            invokespecial java.security.cert.CertificateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 260
      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 261
            aload 2 /* encoding */
            ifnull 6
         4: .line 262
            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 264
      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 266
      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 267
            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 288
            aload 1 /* inStream */
            ifnonnull 2
         1: .line 289
            new java.security.cert.CertificateException
            dup
            ldc "Missing input stream"
            invokespecial java.security.cert.CertificateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 292
      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 293
            aload 3 /* data */
            ifnull 6
         4: .line 294
            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 296
      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 298
      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 299
            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 322
            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 339
            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 357
            aload 1 /* is */
            ifnonnull 2
         1: .line 358
            new java.security.cert.CertificateException
            dup
            ldc "Missing input stream"
            invokespecial java.security.cert.CertificateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 361
      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 362
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 2 /* ioe */
        start local 2 // java.io.IOException ioe
         5: .line 363
            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 383
            aload 1 /* is */
            ifnonnull 3
         1: .line 385
            getstatic sun.security.provider.X509Factory.crlCache:Lsun/security/util/Cache;
            invokevirtual sun.security.util.Cache.clear:()V
         2: .line 386
            new java.security.cert.CRLException
            dup
            ldc "Missing input stream"
            invokespecial java.security.cert.CRLException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 389
      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 390
            aload 2 /* encoding */
            ifnull 13
         5: .line 391
            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 392
            aload 3 /* crl */
            ifnull 9
         7: .line 393
            aload 3 /* crl */
         8: areturn
         9: .line 395
      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 396
            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 397
            aload 3 /* crl */
        12: areturn
        end local 3 // sun.security.x509.X509CRLImpl crl
        13: .line 399
      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 401
      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 402
            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 421
            aload 1 /* is */
            ifnonnull 2
         1: .line 422
            new java.security.cert.CRLException
            dup
            ldc "Missing input stream"
            invokespecial java.security.cert.CRLException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 425
      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 426
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 2 /* ioe */
        start local 2 // java.io.IOException ioe
         5: .line 427
            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 442
            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 443
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 5 /* coll */
        start local 5 // java.util.Collection coll
         2: .line 449
            aload 4 /* pbis */
            invokevirtual java.io.PushbackInputStream.read:()I
            istore 2 /* peekByte */
        start local 2 // int peekByte
         3: .line 450
            iload 2 /* peekByte */
            iconst_m1
            if_icmpne 5
         4: .line 451
            new java.util.ArrayList
            dup
            iconst_0
            invokespecial java.util.ArrayList.<init>:(I)V
            areturn
         5: .line 453
      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 454
            aload 4 /* pbis */
            invokestatic sun.security.provider.X509Factory.readOneBlock:(Ljava/io/InputStream;)[B
            astore 3 /* data */
        start local 3 // byte[] data
         7: .line 460
            aload 3 /* data */
            ifnonnull 9
         8: .line 461
            new java.security.cert.CertificateException
            dup
            ldc "No certificate data found"
            invokespecial java.security.cert.CertificateException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 465
      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 466
            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 468
            aload 7 /* certs */
            ifnull 14
        12: .line 469
            aload 7 /* certs */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
        13: areturn
        14: .line 472
      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 474
      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 475
            goto 20
        18: .line 476
      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 477
            aload 4 /* pbis */
            invokestatic sun.security.provider.X509Factory.readOneBlock:(Ljava/io/InputStream;)[B
            astore 3 /* data */
        20: .line 475
      StackMap locals:
      StackMap stack:
            aload 3 /* data */
            ifnonnull 18
        21: .line 480
            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 494
            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 495
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 5 /* coll */
        start local 5 // java.util.Collection coll
         2: .line 501
            aload 4 /* pbis */
            invokevirtual java.io.PushbackInputStream.read:()I
            istore 2 /* peekByte */
        start local 2 // int peekByte
         3: .line 502
            iload 2 /* peekByte */
            iconst_m1
            if_icmpne 5
         4: .line 503
            new java.util.ArrayList
            dup
            iconst_0
            invokespecial java.util.ArrayList.<init>:(I)V
            areturn
         5: .line 505
      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 506
            aload 4 /* pbis */
            invokestatic sun.security.provider.X509Factory.readOneBlock:(Ljava/io/InputStream;)[B
            astore 3 /* data */
        start local 3 // byte[] data
         7: .line 512
            aload 3 /* data */
            ifnonnull 9
         8: .line 513
            new java.security.cert.CRLException
            dup
            ldc "No CRL data found"
            invokespecial java.security.cert.CRLException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 517
      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 518
            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 520
            aload 7 /* crls */
            ifnull 14
        12: .line 521
            aload 7 /* crls */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
        13: areturn
        14: .line 524
      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 526
      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 527
            goto 20
        18: .line 528
      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 529
            aload 4 /* pbis */
            invokestatic sun.security.provider.X509Factory.readOneBlock:(Ljava/io/InputStream;)[B
            astore 3 /* data */
        20: .line 527
      StackMap locals:
      StackMap stack:
            aload 3 /* data */
            ifnonnull 18
        21: .line 532
            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=3, locals=9, args_size=1
        start local 0 // java.io.InputStream is
         0: .line 550
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 1 /* c */
        start local 1 // int c
         1: .line 551
            iload 1 /* c */
            iconst_m1
            if_icmpne 3
         2: .line 552
            aconst_null
            areturn
         3: .line 554
      StackMap locals: int
      StackMap stack:
            iload 1 /* c */
            bipush 48
            if_icmpne 8
         4: .line 555
            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 556
            aload 2 /* bout */
            iload 1 /* c */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         6: .line 557
            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 558
            aload 2 /* bout */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            areturn
        end local 2 // java.io.ByteArrayOutputStream bout
         8: .line 561
      StackMap locals:
      StackMap stack:
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            astore 2 /* data */
        start local 2 // java.io.ByteArrayOutputStream data
         9: .line 564
            iload 1 /* c */
            bipush 45
            if_icmpne 10
            iconst_1
            goto 11
      StackMap locals: java.io.ByteArrayOutputStream
      StackMap stack:
        10: iconst_0
      StackMap locals:
      StackMap stack: int
        11: istore 3 /* hyphen */
        start local 3 // int hyphen
        12: .line 565
            iload 1 /* c */
            bipush 45
            if_icmpne 13
            iconst_m1
            goto 14
      StackMap locals: int
      StackMap stack:
        13: iload 1 /* c */
      StackMap locals:
      StackMap stack: int
        14: istore 4 /* last */
        start local 4 // int last
        15: .line 567
      StackMap locals: int
      StackMap stack:
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 5 /* next */
        start local 5 // int next
        16: .line 568
            iload 5 /* next */
            iconst_m1
            if_icmpne 18
        17: .line 571
            aconst_null
            areturn
        18: .line 573
      StackMap locals: int
      StackMap stack:
            iload 5 /* next */
            bipush 45
            if_icmpne 21
        19: .line 574
            iinc 3 /* hyphen */ 1
        20: .line 575
            goto 23
        21: .line 576
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* hyphen */
        22: .line 577
            iload 5 /* next */
            istore 4 /* last */
        23: .line 579
      StackMap locals:
      StackMap stack:
            iload 3 /* hyphen */
            iconst_5
            if_icmpne 15
            iload 4 /* last */
            iconst_m1
            if_icmpeq 24
            iload 4 /* last */
            bipush 13
            if_icmpeq 24
            iload 4 /* last */
            bipush 10
            if_icmpne 15
        end local 5 // int next
        24: .line 586
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "-----"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            astore 6 /* header */
        start local 6 // java.lang.StringBuilder header
        25: .line 588
      StackMap locals: java.io.InputStream int java.io.ByteArrayOutputStream int int top java.lang.StringBuilder
      StackMap stack:
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 7 /* next */
        start local 7 // int next
        26: .line 589
            iload 7 /* next */
            iconst_m1
            if_icmpne 28
        27: .line 590
            new java.io.IOException
            dup
            ldc "Incomplete data"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        28: .line 592
      StackMap locals: int
      StackMap stack:
            iload 7 /* next */
            bipush 10
            if_icmpne 31
        29: .line 593
            bipush 10
            istore 5 /* end */
        start local 5 // int end
        30: .line 594
            goto 44
        end local 5 // int end
        31: .line 596
      StackMap locals:
      StackMap stack:
            iload 7 /* next */
            bipush 13
            if_icmpne 42
        32: .line 597
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 7 /* next */
        33: .line 598
            iload 7 /* next */
            iconst_m1
            if_icmpne 35
        34: .line 599
            new java.io.IOException
            dup
            ldc "Incomplete data"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        35: .line 601
      StackMap locals:
      StackMap stack:
            iload 7 /* next */
            bipush 10
            if_icmpne 38
        36: .line 602
            bipush 10
            istore 5 /* end */
        start local 5 // int end
        37: .line 603
            goto 44
        end local 5 // int end
        38: .line 604
      StackMap locals:
      StackMap stack:
            bipush 13
            istore 5 /* end */
        start local 5 // int end
        39: .line 606
            iload 7 /* next */
            bipush 9
            if_icmpeq 44
            iload 7 /* next */
            bipush 10
            if_icmpeq 44
            iload 7 /* next */
            bipush 13
            if_icmpeq 44
            iload 7 /* next */
            bipush 32
            if_icmpeq 44
        40: .line 607
            aload 2 /* data */
            iload 7 /* next */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        41: .line 610
            goto 44
        end local 5 // int end
        42: .line 612
      StackMap locals:
      StackMap stack:
            aload 6 /* header */
            iload 7 /* next */
            i2c
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        end local 7 // int next
        43: .line 587
            goto 25
        start local 5 // int end
        44: .line 617
      StackMap locals: java.io.InputStream int java.io.ByteArrayOutputStream int int int java.lang.StringBuilder
      StackMap stack:
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 7 /* next */
        start local 7 // int next
        45: .line 618
            iload 7 /* next */
            iconst_m1
            if_icmpne 47
        46: .line 619
            new java.io.IOException
            dup
            ldc "Incomplete data"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        47: .line 621
      StackMap locals: int
      StackMap stack:
            iload 7 /* next */
            bipush 45
            if_icmpeq 51
        48: .line 623
            iload 7 /* next */
            bipush 9
            if_icmpeq 44
            iload 7 /* next */
            bipush 10
            if_icmpeq 44
            iload 7 /* next */
            bipush 13
            if_icmpeq 44
            iload 7 /* next */
            bipush 32
            if_icmpeq 44
        49: .line 624
            aload 2 /* data */
            iload 7 /* next */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        end local 7 // int next
        50: .line 616
            goto 44
        51: .line 632
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "-"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            astore 7 /* footer */
        start local 7 // java.lang.StringBuilder footer
        52: .line 634
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 8 /* next */
        start local 8 // int next
        53: .line 637
            iload 8 /* next */
            iconst_m1
            if_icmpeq 57
            iload 8 /* next */
            iload 5 /* end */
            if_icmpeq 57
            iload 8 /* next */
            bipush 10
            if_icmpne 55
        54: .line 638
            goto 57
        55: .line 640
      StackMap locals: int
      StackMap stack:
            iload 8 /* next */
            bipush 13
            if_icmpeq 52
            aload 7 /* footer */
            iload 8 /* next */
            i2c
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        end local 8 // int next
        56: .line 633
            goto 52
        57: .line 643
      StackMap locals:
      StackMap stack:
            aload 6 /* header */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 7 /* footer */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic sun.security.provider.X509Factory.checkHeaderFooter:(Ljava/lang/String;Ljava/lang/String;)V
        58: .line 646
            invokestatic java.util.Base64.getDecoder:()Ljava/util/Base64$Decoder;
            aload 2 /* data */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            invokevirtual java.util.Base64$Decoder.decode:([B)[B
        59: areturn
        60: .line 647
      StackMap locals:
      StackMap stack: java.lang.IllegalArgumentException
            astore 8 /* e */
        start local 8 // java.lang.IllegalArgumentException e
        61: .line 648
            new java.io.IOException
            dup
            aload 8 /* e */
            invokespecial java.io.IOException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 8 // java.lang.IllegalArgumentException e
        end local 7 // java.lang.StringBuilder footer
        end local 6 // java.lang.StringBuilder header
        end local 5 // int end
        end local 4 // int last
        end local 3 // int hyphen
        end local 2 // java.io.ByteArrayOutputStream data
        end local 1 // int c
        end local 0 // java.io.InputStream is
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   62     0      is  Ljava/io/InputStream;
            1   62     1       c  I
            5    8     2    bout  Ljava/io/ByteArrayOutputStream;
            9   62     2    data  Ljava/io/ByteArrayOutputStream;
           12   62     3  hyphen  I
           15   62     4    last  I
           16   24     5    next  I
           30   31     5     end  I
           37   38     5     end  I
           39   42     5     end  I
           44   62     5     end  I
           25   62     6  header  Ljava/lang/StringBuilder;
           26   43     7    next  I
           45   50     7    next  I
           52   62     7  footer  Ljava/lang/StringBuilder;
           53   56     8    next  I
           61   62     8       e  Ljava/lang/IllegalArgumentException;
      Exception table:
        from    to  target  type
          58    59      60  Class java.lang.IllegalArgumentException
    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 655
            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 656
            aload 0 /* header */
            ldc "-----"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifne 3
         2: .line 657
      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 659
      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 660
            aload 1 /* footer */
            ldc "-----"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifne 6
         5: .line 661
      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 663
      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 664
            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 665
            aload 2 /* headerType */
            aload 3 /* footerType */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 12
         9: .line 666
            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 667
            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 666
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 669
      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 684
            iload 2 /* tag */
            iconst_m1
            if_icmpne 7
         1: .line 685
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 2 /* tag */
         2: .line 686
            iload 2 /* tag */
            iconst_m1
            if_icmpne 4
         3: .line 687
            new java.io.IOException
            dup
            ldc "BER/DER tag info absent"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 689
      StackMap locals:
      StackMap stack:
            iload 2 /* tag */
            bipush 31
            iand
            bipush 31
            if_icmpne 6
         5: .line 690
            new java.io.IOException
            dup
            ldc "Multi octets tag not supported"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 692
      StackMap locals:
      StackMap stack:
            aload 1 /* bout */
            iload 2 /* tag */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
         7: .line 695
      StackMap locals:
      StackMap stack:
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 3 /* n */
        start local 3 // int n
         8: .line 696
            iload 3 /* n */
            iconst_m1
            if_icmpne 10
         9: .line 697
            new java.io.IOException
            dup
            ldc "BER/DER length info absent"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 699
      StackMap locals: int
      StackMap stack:
            aload 1 /* bout */
            iload 3 /* n */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        11: .line 703
            iload 3 /* n */
            sipush 128
            if_icmpne 19
        12: .line 704
            iload 2 /* tag */
            bipush 32
            iand
            bipush 32
            if_icmpeq 16
        13: .line 705
            new java.io.IOException
            dup
        14: .line 706
            ldc "Non constructed encoding must have definite length"
        15: .line 705
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 709
      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 710
            iload 5 /* subTag */
            ifne 16
        end local 5 // int subTag
        18: .line 714
            goto 70
        19: .line 715
      StackMap locals:
      StackMap stack:
            iload 3 /* n */
            sipush 128
            if_icmpge 22
        20: .line 716
            iload 3 /* n */
            istore 4 /* length */
        start local 4 // int length
        21: .line 717
            goto 68
        end local 4 // int length
      StackMap locals:
      StackMap stack:
        22: iload 3 /* n */
            sipush 129
            if_icmpne 28
        23: .line 718
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 4 /* length */
        start local 4 // int length
        24: .line 719
            iload 4 /* length */
            iconst_m1
            if_icmpne 26
        25: .line 720
            new java.io.IOException
            dup
            ldc "Incomplete BER/DER length info"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        26: .line 722
      StackMap locals: int
      StackMap stack:
            aload 1 /* bout */
            iload 4 /* length */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        27: .line 723
            goto 68
        end local 4 // int length
      StackMap locals:
      StackMap stack:
        28: iload 3 /* n */
            sipush 130
            if_icmpne 37
        29: .line 724
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 5 /* highByte */
        start local 5 // int highByte
        30: .line 725
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 6 /* lowByte */
        start local 6 // int lowByte
        31: .line 726
            iload 6 /* lowByte */
            iconst_m1
            if_icmpne 33
        32: .line 727
            new java.io.IOException
            dup
            ldc "Incomplete BER/DER length info"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        33: .line 729
      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 730
            aload 1 /* bout */
            iload 6 /* lowByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        35: .line 731
            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 732
            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 733
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 5 /* highByte */
        start local 5 // int highByte
        39: .line 734
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 6 /* midByte */
        start local 6 // int midByte
        40: .line 735
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 7 /* lowByte */
        start local 7 // int lowByte
        41: .line 736
            iload 7 /* lowByte */
            iconst_m1
            if_icmpne 43
        42: .line 737
            new java.io.IOException
            dup
            ldc "Incomplete BER/DER length info"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        43: .line 739
      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 740
            aload 1 /* bout */
            iload 6 /* midByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        45: .line 741
            aload 1 /* bout */
            iload 7 /* lowByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        46: .line 742
            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 743
            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 744
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 5 /* highByte */
        start local 5 // int highByte
        50: .line 745
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 6 /* nextByte */
        start local 6 // int nextByte
        51: .line 746
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 7 /* midByte */
        start local 7 // int midByte
        52: .line 747
            aload 0 /* is */
            invokevirtual java.io.InputStream.read:()I
            istore 8 /* lowByte */
        start local 8 // int lowByte
        53: .line 748
            iload 8 /* lowByte */
            iconst_m1
            if_icmpne 55
        54: .line 749
            new java.io.IOException
            dup
            ldc "Incomplete BER/DER length info"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        55: .line 751
      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 752
            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 754
      StackMap locals:
      StackMap stack:
            aload 1 /* bout */
            iload 5 /* highByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        58: .line 755
            aload 1 /* bout */
            iload 6 /* nextByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        59: .line 756
            aload 1 /* bout */
            iload 7 /* midByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        60: .line 757
            aload 1 /* bout */
            iload 8 /* lowByte */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        61: .line 758
            iload 5 /* highByte */
            bipush 24
            ishl
            iload 6 /* nextByte */
            bipush 16
            ishl
            ior
        62: .line 759
            iload 7 /* midByte */
            bipush 8
            ishl
        63: .line 758
            ior
        64: .line 759
            iload 8 /* lowByte */
        65: .line 758
            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 760
            goto 68
        end local 4 // int length
        67: .line 761
      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 763
      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 764
            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 767
      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   

  private void commitEvent(sun.security.x509.X509CertImpl);
    descriptor: (Lsun/security/x509/X509CertImpl;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=12, locals=15, args_size=2
        start local 0 // sun.security.provider.X509Factory this
        start local 1 // sun.security.x509.X509CertImpl info
         0: .line 771
            new jdk.internal.event.X509CertificateEvent
            dup
            invokespecial jdk.internal.event.X509CertificateEvent.<init>:()V
            astore 2 /* xce */
        start local 2 // jdk.internal.event.X509CertificateEvent xce
         1: .line 772
            aload 2 /* xce */
            invokevirtual jdk.internal.event.X509CertificateEvent.shouldCommit:()Z
            ifne 2
            invokestatic jdk.internal.event.EventHelper.isLoggingSecurity:()Z
            ifeq 34
         2: .line 773
      StackMap locals: jdk.internal.event.X509CertificateEvent
      StackMap stack:
            aload 1 /* info */
            invokevirtual sun.security.x509.X509CertImpl.getPublicKey:()Ljava/security/PublicKey;
            astore 3 /* pKey */
        start local 3 // java.security.PublicKey pKey
         3: .line 774
            aload 1 /* info */
            invokevirtual sun.security.x509.X509CertImpl.getSigAlgName:()Ljava/lang/String;
            astore 4 /* algId */
        start local 4 // java.lang.String algId
         4: .line 775
            aload 1 /* info */
            invokevirtual sun.security.x509.X509CertImpl.getSerialNumber:()Ljava/math/BigInteger;
            bipush 16
            invokevirtual java.math.BigInteger.toString:(I)Ljava/lang/String;
            astore 5 /* serNum */
        start local 5 // java.lang.String serNum
         5: .line 776
            aload 1 /* info */
            invokevirtual sun.security.x509.X509CertImpl.getSubjectDN:()Ljava/security/Principal;
            invokeinterface java.security.Principal.getName:()Ljava/lang/String;
            astore 6 /* subject */
        start local 6 // java.lang.String subject
         6: .line 777
            aload 1 /* info */
            invokevirtual sun.security.x509.X509CertImpl.getIssuerDN:()Ljava/security/Principal;
            invokeinterface java.security.Principal.getName:()Ljava/lang/String;
            astore 7 /* issuer */
        start local 7 // java.lang.String issuer
         7: .line 778
            aload 3 /* pKey */
            invokeinterface java.security.PublicKey.getAlgorithm:()Ljava/lang/String;
            astore 8 /* keyType */
        start local 8 // java.lang.String keyType
         8: .line 779
            aload 3 /* pKey */
            invokestatic sun.security.util.KeyUtil.getKeySize:(Ljava/security/Key;)I
            istore 9 /* length */
        start local 9 // int length
         9: .line 780
            aload 1 /* info */
            invokevirtual sun.security.x509.X509CertImpl.hashCode:()I
            istore 10 /* hashCode */
        start local 10 // int hashCode
        10: .line 781
            aload 1 /* info */
            invokevirtual sun.security.x509.X509CertImpl.getNotBefore:()Ljava/util/Date;
            invokevirtual java.util.Date.getTime:()J
            lstore 11 /* beginDate */
        start local 11 // long beginDate
        11: .line 782
            aload 1 /* info */
            invokevirtual sun.security.x509.X509CertImpl.getNotAfter:()Ljava/util/Date;
            invokevirtual java.util.Date.getTime:()J
            lstore 13 /* endDate */
        start local 13 // long endDate
        12: .line 783
            aload 2 /* xce */
            invokevirtual jdk.internal.event.X509CertificateEvent.shouldCommit:()Z
            ifeq 23
        13: .line 784
            aload 2 /* xce */
            aload 4 /* algId */
            putfield jdk.internal.event.X509CertificateEvent.algorithm:Ljava/lang/String;
        14: .line 785
            aload 2 /* xce */
            aload 5 /* serNum */
            putfield jdk.internal.event.X509CertificateEvent.serialNumber:Ljava/lang/String;
        15: .line 786
            aload 2 /* xce */
            aload 6 /* subject */
            putfield jdk.internal.event.X509CertificateEvent.subject:Ljava/lang/String;
        16: .line 787
            aload 2 /* xce */
            aload 7 /* issuer */
            putfield jdk.internal.event.X509CertificateEvent.issuer:Ljava/lang/String;
        17: .line 788
            aload 2 /* xce */
            aload 8 /* keyType */
            putfield jdk.internal.event.X509CertificateEvent.keyType:Ljava/lang/String;
        18: .line 789
            aload 2 /* xce */
            iload 9 /* length */
            putfield jdk.internal.event.X509CertificateEvent.keyLength:I
        19: .line 790
            aload 2 /* xce */
            iload 10 /* hashCode */
            i2l
            putfield jdk.internal.event.X509CertificateEvent.certificateId:J
        20: .line 791
            aload 2 /* xce */
            lload 11 /* beginDate */
            putfield jdk.internal.event.X509CertificateEvent.validFrom:J
        21: .line 792
            aload 2 /* xce */
            lload 13 /* endDate */
            putfield jdk.internal.event.X509CertificateEvent.validUntil:J
        22: .line 793
            aload 2 /* xce */
            invokevirtual jdk.internal.event.X509CertificateEvent.commit:()V
        23: .line 795
      StackMap locals: sun.security.provider.X509Factory sun.security.x509.X509CertImpl jdk.internal.event.X509CertificateEvent java.security.PublicKey java.lang.String java.lang.String java.lang.String java.lang.String java.lang.String int int long long
      StackMap stack:
            invokestatic jdk.internal.event.EventHelper.isLoggingSecurity:()Z
            ifeq 34
        24: .line 796
            aload 4 /* algId */
        25: .line 797
            aload 5 /* serNum */
        26: .line 798
            aload 6 /* subject */
        27: .line 799
            aload 7 /* issuer */
        28: .line 800
            aload 8 /* keyType */
        29: .line 801
            iload 9 /* length */
        30: .line 802
            iload 10 /* hashCode */
            i2l
        31: .line 803
            lload 11 /* beginDate */
        32: .line 804
            lload 13 /* endDate */
        33: .line 796
            invokestatic jdk.internal.event.EventHelper.logX509CertificateEvent:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;IJJJ)V
        end local 13 // long endDate
        end local 11 // long beginDate
        end local 10 // int hashCode
        end local 9 // int length
        end local 8 // java.lang.String keyType
        end local 7 // java.lang.String issuer
        end local 6 // java.lang.String subject
        end local 5 // java.lang.String serNum
        end local 4 // java.lang.String algId
        end local 3 // java.security.PublicKey pKey
        34: .line 807
      StackMap locals: sun.security.provider.X509Factory sun.security.x509.X509CertImpl jdk.internal.event.X509CertificateEvent
      StackMap stack:
            return
        end local 2 // jdk.internal.event.X509CertificateEvent xce
        end local 1 // sun.security.x509.X509CertImpl info
        end local 0 // sun.security.provider.X509Factory this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   35     0       this  Lsun/security/provider/X509Factory;
            0   35     1       info  Lsun/security/x509/X509CertImpl;
            1   35     2        xce  Ljdk/internal/event/X509CertificateEvent;
            3   34     3       pKey  Ljava/security/PublicKey;
            4   34     4      algId  Ljava/lang/String;
            5   34     5     serNum  Ljava/lang/String;
            6   34     6    subject  Ljava/lang/String;
            7   34     7     issuer  Ljava/lang/String;
            8   34     8    keyType  Ljava/lang/String;
            9   34     9     length  I
           10   34    10   hashCode  I
           11   34    11  beginDate  J
           12   34    13    endDate  J
    MethodParameters:
      Name  Flags
      info  
}
SourceFile: "X509Factory.java"
InnerClasses:
  public Decoder = java.util.Base64$Decoder of java.util.Base64
  public EqualByteArray = sun.security.util.Cache$EqualByteArray of sun.security.util.Cache