public final class io.netty.internal.tcnative.SessionTicketKey
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.netty.internal.tcnative.SessionTicketKey
  super_class: java.lang.Object
{
  public static final int NAME_SIZE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  public static final int HMAC_KEY_SIZE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  public static final int AES_KEY_SIZE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  public static final int TICKET_KEY_SIZE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 48

  final byte[] name;
    descriptor: [B
    flags: (0x0010) ACC_FINAL

  final byte[] hmacKey;
    descriptor: [B
    flags: (0x0010) ACC_FINAL

  final byte[] aesKey;
    descriptor: [B
    flags: (0x0010) ACC_FINAL

  public void <init>(byte[], byte[], byte[]);
    descriptor: ([B[B[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.netty.internal.tcnative.SessionTicketKey this
        start local 1 // byte[] name
        start local 2 // byte[] hmacKey
        start local 3 // byte[] aesKey
         0: .line 51
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 1 /* name */
            ifnull 2
            aload 1 /* name */
            arraylength
            bipush 16
            if_icmpeq 3
         2: .line 53
      StackMap locals: io.netty.internal.tcnative.SessionTicketKey byte[] byte[] byte[]
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Length of name should be 16"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 55
      StackMap locals:
      StackMap stack:
            aload 2 /* hmacKey */
            ifnull 4
            aload 2 /* hmacKey */
            arraylength
            bipush 16
            if_icmpeq 5
         4: .line 56
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Length of hmacKey should be 16"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 58
      StackMap locals:
      StackMap stack:
            aload 3 /* aesKey */
            ifnull 6
            aload 3 /* aesKey */
            arraylength
            bipush 16
            if_icmpeq 7
         6: .line 59
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Length of aesKey should be 16"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 61
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* name */
            putfield io.netty.internal.tcnative.SessionTicketKey.name:[B
         8: .line 62
            aload 0 /* this */
            aload 2 /* hmacKey */
            putfield io.netty.internal.tcnative.SessionTicketKey.hmacKey:[B
         9: .line 63
            aload 0 /* this */
            aload 3 /* aesKey */
            putfield io.netty.internal.tcnative.SessionTicketKey.aesKey:[B
        10: .line 64
            return
        end local 3 // byte[] aesKey
        end local 2 // byte[] hmacKey
        end local 1 // byte[] name
        end local 0 // io.netty.internal.tcnative.SessionTicketKey this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lio/netty/internal/tcnative/SessionTicketKey;
            0   11     1     name  [B
            0   11     2  hmacKey  [B
            0   11     3   aesKey  [B
    MethodParameters:
         Name  Flags
      name     
      hmacKey  
      aesKey   

  public byte[] getName();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.internal.tcnative.SessionTicketKey this
         0: .line 72
            aload 0 /* this */
            getfield io.netty.internal.tcnative.SessionTicketKey.name:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            areturn
        end local 0 // io.netty.internal.tcnative.SessionTicketKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/internal/tcnative/SessionTicketKey;

  public byte[] getHmacKey();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.internal.tcnative.SessionTicketKey this
         0: .line 80
            aload 0 /* this */
            getfield io.netty.internal.tcnative.SessionTicketKey.hmacKey:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            areturn
        end local 0 // io.netty.internal.tcnative.SessionTicketKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/internal/tcnative/SessionTicketKey;

  public byte[] getAesKey();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.internal.tcnative.SessionTicketKey this
         0: .line 88
            aload 0 /* this */
            getfield io.netty.internal.tcnative.SessionTicketKey.aesKey:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            areturn
        end local 0 // io.netty.internal.tcnative.SessionTicketKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/internal/tcnative/SessionTicketKey;
}
SourceFile: "SessionTicketKey.java"