public abstract class javax.security.cert.Certificate
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: javax.security.cert.Certificate
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.security.cert.Certificate this
         0: .line 63
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // javax.security.cert.Certificate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/security/cert/Certificate;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // javax.security.cert.Certificate this
        start local 1 // java.lang.Object other
         0: .line 77
            aload 0 /* this */
            aload 1 /* other */
            if_acmpne 2
         1: .line 78
            iconst_1
            ireturn
         2: .line 79
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            instanceof javax.security.cert.Certificate
            ifne 4
         3: .line 80
            iconst_0
            ireturn
         4: .line 82
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.security.cert.Certificate.getEncoded:()[B
            astore 2 /* thisCert */
        start local 2 // byte[] thisCert
         5: .line 83
            aload 1 /* other */
            checkcast javax.security.cert.Certificate
            invokevirtual javax.security.cert.Certificate.getEncoded:()[B
            astore 3 /* otherCert */
        start local 3 // byte[] otherCert
         6: .line 85
            aload 2 /* thisCert */
            arraylength
            aload 3 /* otherCert */
            arraylength
            if_icmpeq 8
         7: .line 86
            iconst_0
            ireturn
         8: .line 87
      StackMap locals: byte[] byte[]
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         9: goto 13
        10: .line 88
      StackMap locals: int
      StackMap stack:
            aload 2 /* thisCert */
            iload 4 /* i */
            baload
            aload 3 /* otherCert */
            iload 4 /* i */
            baload
            if_icmpeq 12
        11: .line 89
            iconst_0
            ireturn
        12: .line 87
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 4 /* i */
            aload 2 /* thisCert */
            arraylength
            if_icmplt 10
        end local 4 // int i
        14: .line 90
            iconst_1
            ireturn
        end local 3 // byte[] otherCert
        end local 2 // byte[] thisCert
        15: .line 91
      StackMap locals: javax.security.cert.Certificate java.lang.Object
      StackMap stack: javax.security.cert.CertificateException
            pop
        16: .line 92
            iconst_0
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // javax.security.cert.Certificate this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0       this  Ljavax/security/cert/Certificate;
            0   17     1      other  Ljava/lang/Object;
            5   15     2   thisCert  [B
            6   15     3  otherCert  [B
            9   14     4          i  I
      Exception table:
        from    to  target  type
           4     7      15  Class javax.security.cert.CertificateException
           8    11      15  Class javax.security.cert.CertificateException
          12    14      15  Class javax.security.cert.CertificateException
    MethodParameters:
       Name  Flags
      other  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // javax.security.cert.Certificate this
         0: .line 103
            iconst_0
            istore 1 /* retval */
        start local 1 // int retval
         1: .line 105
            aload 0 /* this */
            invokevirtual javax.security.cert.Certificate.getEncoded:()[B
            astore 2 /* certData */
        start local 2 // byte[] certData
         2: .line 106
            iconst_1
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 107
      StackMap locals: int byte[] int
      StackMap stack:
            iload 1 /* retval */
            aload 2 /* certData */
            iload 3 /* i */
            baload
            iload 3 /* i */
            imul
            iadd
            istore 1 /* retval */
         5: .line 106
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 2 /* certData */
            arraylength
            if_icmplt 4
        end local 3 // int i
         7: .line 109
            iload 1 /* retval */
         8: ireturn
        end local 2 // byte[] certData
         9: .line 110
      StackMap locals: javax.security.cert.Certificate int
      StackMap stack: javax.security.cert.CertificateException
            pop
        10: .line 111
            iload 1 /* retval */
            ireturn
        end local 1 // int retval
        end local 0 // javax.security.cert.Certificate this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Ljavax/security/cert/Certificate;
            1   11     1    retval  I
            2    9     2  certData  [B
            3    7     3         i  I
      Exception table:
        from    to  target  type
           1     8       9  Class javax.security.cert.CertificateException

  public abstract byte[] getEncoded();
    descriptor: ()[B
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws javax.security.cert.CertificateEncodingException

  public abstract void verify(java.security.PublicKey);
    descriptor: (Ljava/security/PublicKey;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws javax.security.cert.CertificateException, java.security.NoSuchAlgorithmException, java.security.InvalidKeyException, java.security.NoSuchProviderException, java.security.SignatureException
    MethodParameters:
      Name  Flags
      key   

  public abstract void verify(java.security.PublicKey, java.lang.String);
    descriptor: (Ljava/security/PublicKey;Ljava/lang/String;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws javax.security.cert.CertificateException, java.security.NoSuchAlgorithmException, java.security.InvalidKeyException, java.security.NoSuchProviderException, java.security.SignatureException
    MethodParameters:
             Name  Flags
      key          
      sigProvider  

  public abstract java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.security.PublicKey getPublicKey();
    descriptor: ()Ljava/security/PublicKey;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
}
SourceFile: "Certificate.java"