final class com.sun.crypto.provider.DESKey implements javax.crypto.SecretKey
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.sun.crypto.provider.DESKey
  super_class: java.lang.Object
{
  static final long serialVersionUID;
    descriptor: J
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 7724971015953279128

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

  void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.crypto.provider.DESKey this
        start local 1 // byte[] key
         0: .line 56
            aload 0 /* this */
            aload 1 /* key */
            iconst_0
            invokespecial com.sun.crypto.provider.DESKey.<init>:([BI)V
         1: .line 57
            return
        end local 1 // byte[] key
        end local 0 // com.sun.crypto.provider.DESKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/crypto/provider/DESKey;
            0    2     1   key  [B
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      key   

  void <init>(byte[], int);
    descriptor: ([BI)V
    flags: (0x0000) 
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // com.sun.crypto.provider.DESKey this
        start local 1 // byte[] key
        start local 2 // int offset
         0: .line 70
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 71
            aload 1 /* key */
            ifnull 2
            aload 1 /* key */
            arraylength
            iload 2 /* offset */
            isub
            bipush 8
            if_icmpge 3
         2: .line 72
      StackMap locals: com.sun.crypto.provider.DESKey byte[] int
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "Wrong key size"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 74
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 8
            newarray 8
            putfield com.sun.crypto.provider.DESKey.key:[B
         4: .line 75
            aload 1 /* key */
            iload 2 /* offset */
            aload 0 /* this */
            getfield com.sun.crypto.provider.DESKey.key:[B
            iconst_0
            bipush 8
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 76
            aload 0 /* this */
            getfield com.sun.crypto.provider.DESKey.key:[B
            iconst_0
            invokestatic com.sun.crypto.provider.DESKeyGenerator.setParityBit:([BI)V
         6: .line 77
            return
        end local 2 // int offset
        end local 1 // byte[] key
        end local 0 // com.sun.crypto.provider.DESKey this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/sun/crypto/provider/DESKey;
            0    7     1     key  [B
            0    7     2  offset  I
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
        Name  Flags
      key     
      offset  

  public synchronized byte[] getEncoded();
    descriptor: ()[B
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.DESKey this
         0: .line 82
            aload 0 /* this */
            getfield com.sun.crypto.provider.DESKey.key:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            areturn
        end local 0 // com.sun.crypto.provider.DESKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/DESKey;

  public java.lang.String getAlgorithm();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.DESKey this
         0: .line 86
            ldc "DES"
            areturn
        end local 0 // com.sun.crypto.provider.DESKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/DESKey;

  public java.lang.String getFormat();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.DESKey this
         0: .line 90
            ldc "RAW"
            areturn
        end local 0 // com.sun.crypto.provider.DESKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/DESKey;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.sun.crypto.provider.DESKey this
         0: .line 98
            iconst_0
            istore 1 /* retval */
        start local 1 // int retval
         1: .line 99
            iconst_1
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 100
      StackMap locals: int int
      StackMap stack:
            iload 1 /* retval */
            aload 0 /* this */
            getfield com.sun.crypto.provider.DESKey.key:[B
            iload 2 /* i */
            baload
            iload 2 /* i */
            imul
            iadd
            istore 1 /* retval */
         4: .line 99
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.crypto.provider.DESKey.key:[B
            arraylength
            if_icmplt 3
        end local 2 // int i
         6: .line 102
            iload 1 /* retval */
            ldc "des"
            invokevirtual java.lang.String.hashCode:()I
            ixor
            dup
            istore 1 /* retval */
            ireturn
        end local 1 // int retval
        end local 0 // com.sun.crypto.provider.DESKey this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/sun/crypto/provider/DESKey;
            1    7     1  retval  I
            2    6     2       i  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.sun.crypto.provider.DESKey this
        start local 1 // java.lang.Object obj
         0: .line 106
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 107
            iconst_1
            ireturn
         2: .line 109
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof javax.crypto.SecretKey
            ifne 4
         3: .line 110
            iconst_0
            ireturn
         4: .line 112
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast javax.crypto.SecretKey
            invokeinterface javax.crypto.SecretKey.getAlgorithm:()Ljava/lang/String;
            astore 2 /* thatAlg */
        start local 2 // java.lang.String thatAlg
         5: .line 113
            aload 2 /* thatAlg */
            ldc "DES"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 7
         6: .line 114
            iconst_0
            ireturn
         7: .line 116
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* obj */
            checkcast javax.crypto.SecretKey
            invokeinterface javax.crypto.SecretKey.getEncoded:()[B
            astore 3 /* thatKey */
        start local 3 // byte[] thatKey
         8: .line 117
            aload 0 /* this */
            getfield com.sun.crypto.provider.DESKey.key:[B
            aload 3 /* thatKey */
            invokestatic java.security.MessageDigest.isEqual:([B[B)Z
            istore 4 /* ret */
        start local 4 // boolean ret
         9: .line 118
            aload 3 /* thatKey */
            iconst_0
            invokestatic java.util.Arrays.fill:([BB)V
        10: .line 119
            iload 4 /* ret */
            ireturn
        end local 4 // boolean ret
        end local 3 // byte[] thatKey
        end local 2 // java.lang.String thatAlg
        end local 1 // java.lang.Object obj
        end local 0 // com.sun.crypto.provider.DESKey this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lcom/sun/crypto/provider/DESKey;
            0   11     1      obj  Ljava/lang/Object;
            5   11     2  thatAlg  Ljava/lang/String;
            8   11     3  thatKey  [B
            9   11     4      ret  Z
    MethodParameters:
      Name  Flags
      obj   

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.crypto.provider.DESKey this
        start local 1 // java.io.ObjectInputStream s
         0: .line 129
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 130
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.crypto.provider.DESKey.key:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield com.sun.crypto.provider.DESKey.key:[B
         2: .line 131
            return
        end local 1 // java.io.ObjectInputStream s
        end local 0 // com.sun.crypto.provider.DESKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/crypto/provider/DESKey;
            0    3     1     s  Ljava/io/ObjectInputStream;
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      s     

  private java.lang.Object writeReplace();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.DESKey this
         0: .line 142
            new java.security.KeyRep
            dup
            getstatic java.security.KeyRep$Type.SECRET:Ljava/security/KeyRep$Type;
         1: .line 143
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DESKey.getAlgorithm:()Ljava/lang/String;
         2: .line 144
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DESKey.getFormat:()Ljava/lang/String;
         3: .line 145
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.DESKey.getEncoded:()[B
         4: .line 142
            invokespecial java.security.KeyRep.<init>:(Ljava/security/KeyRep$Type;Ljava/lang/String;Ljava/lang/String;[B)V
            areturn
        end local 0 // com.sun.crypto.provider.DESKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/crypto/provider/DESKey;
    Exceptions:
      throws java.io.ObjectStreamException

  protected void finalize();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // com.sun.crypto.provider.DESKey this
         0: .line 154
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         1: .line 155
            aload 0 /* this */
            getfield com.sun.crypto.provider.DESKey.key:[B
            ifnull 4
         2: .line 156
            aload 0 /* this */
            getfield com.sun.crypto.provider.DESKey.key:[B
            iconst_0
            invokestatic java.util.Arrays.fill:([BB)V
         3: .line 157
            aload 0 /* this */
            aconst_null
            putfield com.sun.crypto.provider.DESKey.key:[B
         4: .line 154
      StackMap locals: com.sun.crypto.provider.DESKey
      StackMap stack:
            aload 1
            monitorexit
         5: goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: aload 1
            monitorexit
         7: athrow
         8: .line 160
      StackMap locals: com.sun.crypto.provider.DESKey
      StackMap stack: java.lang.Throwable
            astore 2
         9: .line 161
            aload 0 /* this */
            invokespecial java.lang.Object.finalize:()V
        10: .line 162
            aload 2
            athrow
        11: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokespecial java.lang.Object.finalize:()V
        12: .line 163
            return
        end local 0 // com.sun.crypto.provider.DESKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lcom/sun/crypto/provider/DESKey;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
           0     8       8  any
    Exceptions:
      throws java.lang.Throwable
}
SourceFile: "DESKey.java"
InnerClasses:
  public final Type = java.security.KeyRep$Type of java.security.KeyRep