public class javax.crypto.spec.GCMParameterSpec implements java.security.spec.AlgorithmParameterSpec
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javax.crypto.spec.GCMParameterSpec
  super_class: java.lang.Object
{
  private byte[] iv;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private int tLen;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>(int, byte[]);
    descriptor: (I[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // javax.crypto.spec.GCMParameterSpec this
        start local 1 // int tLen
        start local 2 // byte[] src
         0: .line 83
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 84
            aload 2 /* src */
            ifnonnull 3
         2: .line 85
            new java.lang.IllegalArgumentException
            dup
            ldc "src array is null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 88
      StackMap locals: javax.crypto.spec.GCMParameterSpec int byte[]
      StackMap stack:
            aload 0 /* this */
            iload 1 /* tLen */
            aload 2 /* src */
            iconst_0
            aload 2 /* src */
            arraylength
            invokevirtual javax.crypto.spec.GCMParameterSpec.init:(I[BII)V
         4: .line 89
            return
        end local 2 // byte[] src
        end local 1 // int tLen
        end local 0 // javax.crypto.spec.GCMParameterSpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/crypto/spec/GCMParameterSpec;
            0    5     1  tLen  I
            0    5     2   src  [B
    MethodParameters:
      Name  Flags
      tLen  
      src   

  public void <init>(int, byte[], int, int);
    descriptor: (I[BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // javax.crypto.spec.GCMParameterSpec this
        start local 1 // int tLen
        start local 2 // byte[] src
        start local 3 // int offset
        start local 4 // int len
         0: .line 107
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 108
            aload 0 /* this */
            iload 1 /* tLen */
            aload 2 /* src */
            iload 3 /* offset */
            iload 4 /* len */
            invokevirtual javax.crypto.spec.GCMParameterSpec.init:(I[BII)V
         2: .line 109
            return
        end local 4 // int len
        end local 3 // int offset
        end local 2 // byte[] src
        end local 1 // int tLen
        end local 0 // javax.crypto.spec.GCMParameterSpec this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Ljavax/crypto/spec/GCMParameterSpec;
            0    3     1    tLen  I
            0    3     2     src  [B
            0    3     3  offset  I
            0    3     4     len  I
    MethodParameters:
        Name  Flags
      tLen    
      src     
      offset  
      len     

  private void init(int, byte[], int, int);
    descriptor: (I[BII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // javax.crypto.spec.GCMParameterSpec this
        start local 1 // int tLen
        start local 2 // byte[] src
        start local 3 // int offset
        start local 4 // int len
         0: .line 115
            iload 1 /* tLen */
            ifge 4
         1: .line 116
            new java.lang.IllegalArgumentException
            dup
         2: .line 117
            ldc "Length argument is negative"
         3: .line 116
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 119
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* tLen */
            putfield javax.crypto.spec.GCMParameterSpec.tLen:I
         5: .line 122
            aload 2 /* src */
            ifnull 7
            iload 4 /* len */
            iflt 7
            iload 3 /* offset */
            iflt 7
         6: .line 123
            iload 4 /* len */
            aload 2 /* src */
            arraylength
            iload 3 /* offset */
            isub
            if_icmple 8
         7: .line 124
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Invalid buffer arguments"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 127
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* len */
            newarray 8
            putfield javax.crypto.spec.GCMParameterSpec.iv:[B
         9: .line 128
            aload 2 /* src */
            iload 3 /* offset */
            aload 0 /* this */
            getfield javax.crypto.spec.GCMParameterSpec.iv:[B
            iconst_0
            iload 4 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 129
            return
        end local 4 // int len
        end local 3 // int offset
        end local 2 // byte[] src
        end local 1 // int tLen
        end local 0 // javax.crypto.spec.GCMParameterSpec this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Ljavax/crypto/spec/GCMParameterSpec;
            0   11     1    tLen  I
            0   11     2     src  [B
            0   11     3  offset  I
            0   11     4     len  I
    MethodParameters:
        Name  Flags
      tLen    
      src     
      offset  
      len     

  public int getTLen();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.crypto.spec.GCMParameterSpec this
         0: .line 137
            aload 0 /* this */
            getfield javax.crypto.spec.GCMParameterSpec.tLen:I
            ireturn
        end local 0 // javax.crypto.spec.GCMParameterSpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/crypto/spec/GCMParameterSpec;

  public byte[] getIV();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.crypto.spec.GCMParameterSpec this
         0: .line 147
            aload 0 /* this */
            getfield javax.crypto.spec.GCMParameterSpec.iv:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            areturn
        end local 0 // javax.crypto.spec.GCMParameterSpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/crypto/spec/GCMParameterSpec;
}
SourceFile: "GCMParameterSpec.java"