public final class javax.security.auth.kerberos.EncryptionKey implements javax.crypto.SecretKey
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: javax.security.auth.kerberos.EncryptionKey
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 9

  private final javax.security.auth.kerberos.KeyImpl key;
    descriptor: Ljavax/security/auth/kerberos/KeyImpl;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private transient boolean destroyed;
    descriptor: Z
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  public void <init>(byte[], int);
    descriptor: ([BI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // javax.security.auth.kerberos.EncryptionKey this
        start local 1 // byte[] keyBytes
        start local 2 // int keyType
         0: .line 75
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 0 /* this */
            iconst_0
            putfield javax.security.auth.kerberos.EncryptionKey.destroyed:Z
         2: .line 76
            aload 0 /* this */
            new javax.security.auth.kerberos.KeyImpl
            dup
            aload 1 /* keyBytes */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast byte[]
            iload 2 /* keyType */
            invokespecial javax.security.auth.kerberos.KeyImpl.<init>:([BI)V
            putfield javax.security.auth.kerberos.EncryptionKey.key:Ljavax/security/auth/kerberos/KeyImpl;
         3: .line 77
            return
        end local 2 // int keyType
        end local 1 // byte[] keyBytes
        end local 0 // javax.security.auth.kerberos.EncryptionKey this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Ljavax/security/auth/kerberos/EncryptionKey;
            0    4     1  keyBytes  [B
            0    4     2   keyType  I
    MethodParameters:
          Name  Flags
      keyBytes  
      keyType   

  public int getKeyType();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.security.auth.kerberos.EncryptionKey this
         0: .line 87
            aload 0 /* this */
            getfield javax.security.auth.kerberos.EncryptionKey.key:Ljavax/security/auth/kerberos/KeyImpl;
            invokevirtual javax.security.auth.kerberos.KeyImpl.getKeyType:()I
            ireturn
        end local 0 // javax.security.auth.kerberos.EncryptionKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/security/auth/kerberos/EncryptionKey;

  public java.lang.String getAlgorithm();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.security.auth.kerberos.EncryptionKey this
         0: .line 114
            aload 0 /* this */
            getfield javax.security.auth.kerberos.EncryptionKey.key:Ljavax/security/auth/kerberos/KeyImpl;
            invokevirtual javax.security.auth.kerberos.KeyImpl.getAlgorithm:()Ljava/lang/String;
            areturn
        end local 0 // javax.security.auth.kerberos.EncryptionKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/security/auth/kerberos/EncryptionKey;

  public java.lang.String getFormat();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.security.auth.kerberos.EncryptionKey this
         0: .line 126
            aload 0 /* this */
            getfield javax.security.auth.kerberos.EncryptionKey.key:Ljavax/security/auth/kerberos/KeyImpl;
            invokevirtual javax.security.auth.kerberos.KeyImpl.getFormat:()Ljava/lang/String;
            areturn
        end local 0 // javax.security.auth.kerberos.EncryptionKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/security/auth/kerberos/EncryptionKey;

  public byte[] getEncoded();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.security.auth.kerberos.EncryptionKey this
         0: .line 138
            aload 0 /* this */
            getfield javax.security.auth.kerberos.EncryptionKey.key:Ljavax/security/auth/kerberos/KeyImpl;
            invokevirtual javax.security.auth.kerberos.KeyImpl.getEncoded:()[B
            areturn
        end local 0 // javax.security.auth.kerberos.EncryptionKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/security/auth/kerberos/EncryptionKey;

  public void destroy();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.security.auth.kerberos.EncryptionKey this
         0: .line 149
            aload 0 /* this */
            getfield javax.security.auth.kerberos.EncryptionKey.destroyed:Z
            ifne 3
         1: .line 150
            aload 0 /* this */
            getfield javax.security.auth.kerberos.EncryptionKey.key:Ljavax/security/auth/kerberos/KeyImpl;
            invokevirtual javax.security.auth.kerberos.KeyImpl.destroy:()V
         2: .line 151
            aload 0 /* this */
            iconst_1
            putfield javax.security.auth.kerberos.EncryptionKey.destroyed:Z
         3: .line 153
      StackMap locals:
      StackMap stack:
            return
        end local 0 // javax.security.auth.kerberos.EncryptionKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavax/security/auth/kerberos/EncryptionKey;
    Exceptions:
      throws javax.security.auth.DestroyFailedException

  public boolean isDestroyed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.security.auth.kerberos.EncryptionKey this
         0: .line 158
            aload 0 /* this */
            getfield javax.security.auth.kerberos.EncryptionKey.destroyed:Z
            ireturn
        end local 0 // javax.security.auth.kerberos.EncryptionKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/security/auth/kerberos/EncryptionKey;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.security.auth.kerberos.EncryptionKey this
         0: .line 168
            aload 0 /* this */
            getfield javax.security.auth.kerberos.EncryptionKey.destroyed:Z
            ifeq 2
         1: .line 169
            ldc "Destroyed EncryptionKey"
            areturn
         2: .line 171
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "key "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield javax.security.auth.kerberos.EncryptionKey.key:Ljavax/security/auth/kerberos/KeyImpl;
            invokevirtual javax.security.auth.kerberos.KeyImpl.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // javax.security.auth.kerberos.EncryptionKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/security/auth/kerberos/EncryptionKey;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // javax.security.auth.kerberos.EncryptionKey this
         0: .line 181
            bipush 17
            istore 1 /* result */
        start local 1 // int result
         1: .line 182
            aload 0 /* this */
            invokevirtual javax.security.auth.kerberos.EncryptionKey.isDestroyed:()Z
            ifeq 3
         2: .line 183
            iload 1 /* result */
            ireturn
         3: .line 185
      StackMap locals: int
      StackMap stack:
            bipush 37
            iload 1 /* result */
            imul
            aload 0 /* this */
            invokevirtual javax.security.auth.kerberos.EncryptionKey.getEncoded:()[B
            invokestatic java.util.Arrays.hashCode:([B)I
            iadd
            istore 1 /* result */
         4: .line 186
            bipush 37
            iload 1 /* result */
            imul
            aload 0 /* this */
            invokevirtual javax.security.auth.kerberos.EncryptionKey.getKeyType:()I
            iadd
            ireturn
        end local 1 // int result
        end local 0 // javax.security.auth.kerberos.EncryptionKey this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Ljavax/security/auth/kerberos/EncryptionKey;
            1    5     1  result  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // javax.security.auth.kerberos.EncryptionKey this
        start local 1 // java.lang.Object other
         0: .line 205
            aload 1 /* other */
            aload 0 /* this */
            if_acmpne 2
         1: .line 206
            iconst_1
            ireturn
         2: .line 208
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            instanceof javax.security.auth.kerberos.EncryptionKey
            ifne 4
         3: .line 209
            iconst_0
            ireturn
         4: .line 212
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            checkcast javax.security.auth.kerberos.EncryptionKey
            astore 2 /* otherKey */
        start local 2 // javax.security.auth.kerberos.EncryptionKey otherKey
         5: .line 213
            aload 0 /* this */
            invokevirtual javax.security.auth.kerberos.EncryptionKey.isDestroyed:()Z
            ifne 6
            aload 2 /* otherKey */
            invokevirtual javax.security.auth.kerberos.EncryptionKey.isDestroyed:()Z
            ifeq 7
         6: .line 214
      StackMap locals: javax.security.auth.kerberos.EncryptionKey
      StackMap stack:
            iconst_0
            ireturn
         7: .line 217
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual javax.security.auth.kerberos.EncryptionKey.getKeyType:()I
            aload 2 /* otherKey */
            invokevirtual javax.security.auth.kerberos.EncryptionKey.getKeyType:()I
            if_icmpne 10
         8: .line 218
            aload 0 /* this */
            invokevirtual javax.security.auth.kerberos.EncryptionKey.getEncoded:()[B
            aload 2 /* otherKey */
            invokevirtual javax.security.auth.kerberos.EncryptionKey.getEncoded:()[B
            invokestatic java.util.Arrays.equals:([B[B)Z
            ifeq 10
         9: .line 217
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        10: iconst_0
            ireturn
        end local 2 // javax.security.auth.kerberos.EncryptionKey otherKey
        end local 1 // java.lang.Object other
        end local 0 // javax.security.auth.kerberos.EncryptionKey this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Ljavax/security/auth/kerberos/EncryptionKey;
            0   11     1     other  Ljava/lang/Object;
            5   11     2  otherKey  Ljavax/security/auth/kerberos/EncryptionKey;
    MethodParameters:
       Name  Flags
      other  
}
SourceFile: "EncryptionKey.java"