public class sun.security.pkcs.EncryptedPrivateKeyInfo
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.security.pkcs.EncryptedPrivateKeyInfo
  super_class: java.lang.Object
{
  private sun.security.x509.AlgorithmId algid;
    descriptor: Lsun/security/x509/AlgorithmId;
    flags: (0x0002) ACC_PRIVATE

  private byte[] encryptedData;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private byte[] encoded;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  public void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // sun.security.pkcs.EncryptedPrivateKeyInfo this
        start local 1 // byte[] encoded
         0: .line 62
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 65
            aload 1 /* encoded */
            ifnonnull 3
         2: .line 66
            new java.lang.IllegalArgumentException
            dup
            ldc "encoding must not be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 69
      StackMap locals: sun.security.pkcs.EncryptedPrivateKeyInfo byte[]
      StackMap stack:
            new sun.security.util.DerValue
            dup
            aload 1 /* encoded */
            invokespecial sun.security.util.DerValue.<init>:([B)V
            astore 2 /* val */
        start local 2 // sun.security.util.DerValue val
         4: .line 71
            iconst_2
            anewarray sun.security.util.DerValue
            astore 3 /* seq */
        start local 3 // sun.security.util.DerValue[] seq
         5: .line 73
            aload 3 /* seq */
            iconst_0
            aload 2 /* val */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.getDerValue:()Lsun/security/util/DerValue;
            aastore
         6: .line 74
            aload 3 /* seq */
            iconst_1
            aload 2 /* val */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.getDerValue:()Lsun/security/util/DerValue;
            aastore
         7: .line 76
            aload 2 /* val */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.available:()I
            ifeq 9
         8: .line 77
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "overrun, bytes = "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* val */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.available:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 80
      StackMap locals: sun.security.util.DerValue sun.security.util.DerValue[]
      StackMap stack:
            aload 0 /* this */
            aload 3 /* seq */
            iconst_0
            aaload
            invokestatic sun.security.x509.AlgorithmId.parse:(Lsun/security/util/DerValue;)Lsun/security/x509/AlgorithmId;
            putfield sun.security.pkcs.EncryptedPrivateKeyInfo.algid:Lsun/security/x509/AlgorithmId;
        10: .line 81
            aload 3 /* seq */
            iconst_0
            aaload
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.available:()I
            ifeq 12
        11: .line 82
            new java.io.IOException
            dup
            ldc "encryptionAlgorithm field overrun"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 85
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* seq */
            iconst_1
            aaload
            invokevirtual sun.security.util.DerValue.getOctetString:()[B
            putfield sun.security.pkcs.EncryptedPrivateKeyInfo.encryptedData:[B
        13: .line 86
            aload 3 /* seq */
            iconst_1
            aaload
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.available:()I
            ifeq 15
        14: .line 87
            new java.io.IOException
            dup
            ldc "encryptedData field overrun"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 89
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* encoded */
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield sun.security.pkcs.EncryptedPrivateKeyInfo.encoded:[B
        16: .line 90
            return
        end local 3 // sun.security.util.DerValue[] seq
        end local 2 // sun.security.util.DerValue val
        end local 1 // byte[] encoded
        end local 0 // sun.security.pkcs.EncryptedPrivateKeyInfo this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   17     0     this  Lsun/security/pkcs/EncryptedPrivateKeyInfo;
            0   17     1  encoded  [B
            4   17     2      val  Lsun/security/util/DerValue;
            5   17     3      seq  [Lsun/security/util/DerValue;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      encoded  

  public void <init>(sun.security.x509.AlgorithmId, byte[]);
    descriptor: (Lsun/security/x509/AlgorithmId;[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // sun.security.pkcs.EncryptedPrivateKeyInfo this
        start local 1 // sun.security.x509.AlgorithmId algid
        start local 2 // byte[] encryptedData
         0: .line 96
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 97
            aload 0 /* this */
            aload 1 /* algid */
            putfield sun.security.pkcs.EncryptedPrivateKeyInfo.algid:Lsun/security/x509/AlgorithmId;
         2: .line 98
            aload 0 /* this */
            aload 2 /* encryptedData */
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield sun.security.pkcs.EncryptedPrivateKeyInfo.encryptedData:[B
         3: .line 99
            return
        end local 2 // byte[] encryptedData
        end local 1 // sun.security.x509.AlgorithmId algid
        end local 0 // sun.security.pkcs.EncryptedPrivateKeyInfo this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lsun/security/pkcs/EncryptedPrivateKeyInfo;
            0    4     1          algid  Lsun/security/x509/AlgorithmId;
            0    4     2  encryptedData  [B
    MethodParameters:
               Name  Flags
      algid          
      encryptedData  

  public sun.security.x509.AlgorithmId getAlgorithm();
    descriptor: ()Lsun/security/x509/AlgorithmId;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.pkcs.EncryptedPrivateKeyInfo this
         0: .line 105
            aload 0 /* this */
            getfield sun.security.pkcs.EncryptedPrivateKeyInfo.algid:Lsun/security/x509/AlgorithmId;
            areturn
        end local 0 // sun.security.pkcs.EncryptedPrivateKeyInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/pkcs/EncryptedPrivateKeyInfo;

  public byte[] getEncryptedData();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.pkcs.EncryptedPrivateKeyInfo this
         0: .line 112
            aload 0 /* this */
            getfield sun.security.pkcs.EncryptedPrivateKeyInfo.encryptedData:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            areturn
        end local 0 // sun.security.pkcs.EncryptedPrivateKeyInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/pkcs/EncryptedPrivateKeyInfo;

  public byte[] getEncoded();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // sun.security.pkcs.EncryptedPrivateKeyInfo this
         0: .line 121
            aload 0 /* this */
            getfield sun.security.pkcs.EncryptedPrivateKeyInfo.encoded:[B
            ifnull 1
            aload 0 /* this */
            getfield sun.security.pkcs.EncryptedPrivateKeyInfo.encoded:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            areturn
         1: .line 123
      StackMap locals:
      StackMap stack:
            new sun.security.util.DerOutputStream
            dup
            invokespecial sun.security.util.DerOutputStream.<init>:()V
            astore 1 /* out */
        start local 1 // sun.security.util.DerOutputStream out
         2: .line 124
            new sun.security.util.DerOutputStream
            dup
            invokespecial sun.security.util.DerOutputStream.<init>:()V
            astore 2 /* tmp */
        start local 2 // sun.security.util.DerOutputStream tmp
         3: .line 127
            aload 0 /* this */
            getfield sun.security.pkcs.EncryptedPrivateKeyInfo.algid:Lsun/security/x509/AlgorithmId;
            aload 2 /* tmp */
            invokevirtual sun.security.x509.AlgorithmId.encode:(Lsun/security/util/DerOutputStream;)V
         4: .line 130
            aload 2 /* tmp */
            aload 0 /* this */
            getfield sun.security.pkcs.EncryptedPrivateKeyInfo.encryptedData:[B
            invokevirtual sun.security.util.DerOutputStream.putOctetString:([B)V
         5: .line 133
            aload 1 /* out */
            bipush 48
            aload 2 /* tmp */
            invokevirtual sun.security.util.DerOutputStream.write:(BLsun/security/util/DerOutputStream;)V
         6: .line 134
            aload 0 /* this */
            aload 1 /* out */
            invokevirtual sun.security.util.DerOutputStream.toByteArray:()[B
            putfield sun.security.pkcs.EncryptedPrivateKeyInfo.encoded:[B
         7: .line 136
            aload 0 /* this */
            getfield sun.security.pkcs.EncryptedPrivateKeyInfo.encoded:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            areturn
        end local 2 // sun.security.util.DerOutputStream tmp
        end local 1 // sun.security.util.DerOutputStream out
        end local 0 // sun.security.pkcs.EncryptedPrivateKeyInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lsun/security/pkcs/EncryptedPrivateKeyInfo;
            2    8     1   out  Lsun/security/util/DerOutputStream;
            3    8     2   tmp  Lsun/security/util/DerOutputStream;
    Exceptions:
      throws java.io.IOException

  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 // sun.security.pkcs.EncryptedPrivateKeyInfo this
        start local 1 // java.lang.Object other
         0: .line 140
            aload 0 /* this */
            aload 1 /* other */
            if_acmpne 2
         1: .line 141
            iconst_1
            ireturn
         2: .line 142
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            instanceof sun.security.pkcs.EncryptedPrivateKeyInfo
            ifne 4
         3: .line 143
            iconst_0
            ireturn
         4: .line 145
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.security.pkcs.EncryptedPrivateKeyInfo.getEncoded:()[B
            astore 2 /* thisEncrInfo */
        start local 2 // byte[] thisEncrInfo
         5: .line 147
            aload 1 /* other */
            checkcast sun.security.pkcs.EncryptedPrivateKeyInfo
            invokevirtual sun.security.pkcs.EncryptedPrivateKeyInfo.getEncoded:()[B
         6: .line 146
            astore 3 /* otherEncrInfo */
        start local 3 // byte[] otherEncrInfo
         7: .line 149
            aload 2 /* thisEncrInfo */
            arraylength
            aload 3 /* otherEncrInfo */
            arraylength
            if_icmpeq 9
         8: .line 150
            iconst_0
            ireturn
         9: .line 151
      StackMap locals: byte[] byte[]
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        10: goto 14
        11: .line 152
      StackMap locals: int
      StackMap stack:
            aload 2 /* thisEncrInfo */
            iload 4 /* i */
            baload
            aload 3 /* otherEncrInfo */
            iload 4 /* i */
            baload
            if_icmpeq 13
        12: .line 153
            iconst_0
            ireturn
        13: .line 151
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 4 /* i */
            aload 2 /* thisEncrInfo */
            arraylength
            if_icmplt 11
        end local 4 // int i
        15: .line 154
            iconst_1
            ireturn
        end local 3 // byte[] otherEncrInfo
        end local 2 // byte[] thisEncrInfo
        16: .line 155
      StackMap locals: sun.security.pkcs.EncryptedPrivateKeyInfo java.lang.Object
      StackMap stack: java.io.IOException
            pop
        17: .line 156
            iconst_0
            ireturn
        end local 1 // java.lang.Object other
        end local 0 // sun.security.pkcs.EncryptedPrivateKeyInfo this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   18     0           this  Lsun/security/pkcs/EncryptedPrivateKeyInfo;
            0   18     1          other  Ljava/lang/Object;
            5   16     2   thisEncrInfo  [B
            7   16     3  otherEncrInfo  [B
           10   15     4              i  I
      Exception table:
        from    to  target  type
           4     8      16  Class java.io.IOException
           9    12      16  Class java.io.IOException
          13    15      16  Class java.io.IOException
    MethodParameters:
       Name  Flags
      other  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // sun.security.pkcs.EncryptedPrivateKeyInfo this
         0: .line 166
            iconst_0
            istore 1 /* retval */
        start local 1 // int retval
         1: .line 168
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 169
      StackMap locals: int int
      StackMap stack:
            iload 1 /* retval */
            aload 0 /* this */
            getfield sun.security.pkcs.EncryptedPrivateKeyInfo.encryptedData:[B
            iload 2 /* i */
            baload
            iload 2 /* i */
            imul
            iadd
            istore 1 /* retval */
         4: .line 168
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield sun.security.pkcs.EncryptedPrivateKeyInfo.encryptedData:[B
            arraylength
            if_icmplt 3
        end local 2 // int i
         6: .line 170
            iload 1 /* retval */
            ireturn
        end local 1 // int retval
        end local 0 // sun.security.pkcs.EncryptedPrivateKeyInfo this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lsun/security/pkcs/EncryptedPrivateKeyInfo;
            1    7     1  retval  I
            2    6     2       i  I
}
SourceFile: "EncryptedPrivateKeyInfo.java"