final class sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher extends sun.security.ssl.SSLCipher$SSLReadCipher
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher
  super_class: sun.security.ssl.SSLCipher$SSLReadCipher
{
  private final javax.crypto.Cipher cipher;
    descriptor: Ljavax/crypto/Cipher;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int tagSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.security.Key key;
    descriptor: Ljava/security/Key;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final byte[] fixedIv;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int recordIvSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.security.SecureRandom random;
    descriptor: Ljava/security/SecureRandom;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(sun.security.ssl.Authenticator, sun.security.ssl.ProtocolVersion, sun.security.ssl.SSLCipher, java.lang.String, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom);
    descriptor: (Lsun/security/ssl/Authenticator;Lsun/security/ssl/ProtocolVersion;Lsun/security/ssl/SSLCipher;Ljava/lang/String;Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=8, args_size=8
        start local 0 // sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher this
        start local 1 // sun.security.ssl.Authenticator authenticator
        start local 2 // sun.security.ssl.ProtocolVersion protocolVersion
        start local 3 // sun.security.ssl.SSLCipher sslCipher
        start local 4 // java.lang.String algorithm
        start local 5 // java.security.Key key
        start local 6 // java.security.spec.AlgorithmParameterSpec params
        start local 7 // java.security.SecureRandom random
         0: .line 1609
            aload 0 /* this */
            aload 1 /* authenticator */
            aload 2 /* protocolVersion */
            invokespecial sun.security.ssl.SSLCipher$SSLReadCipher.<init>:(Lsun/security/ssl/Authenticator;Lsun/security/ssl/ProtocolVersion;)V
         1: .line 1610
            aload 0 /* this */
            aload 4 /* algorithm */
            invokestatic javax.crypto.Cipher.getInstance:(Ljava/lang/String;)Ljavax/crypto/Cipher;
            putfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.cipher:Ljavax/crypto/Cipher;
         2: .line 1611
            aload 0 /* this */
            aload 3 /* sslCipher */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            bipush 16
            putfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.tagSize:I
         3: .line 1612
            aload 0 /* this */
            aload 5 /* key */
            putfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.key:Ljava/security/Key;
         4: .line 1613
            aload 0 /* this */
            aload 6 /* params */
            checkcast javax.crypto.spec.IvParameterSpec
            invokevirtual javax.crypto.spec.IvParameterSpec.getIV:()[B
            putfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.fixedIv:[B
         5: .line 1614
            aload 0 /* this */
            aload 3 /* sslCipher */
            getfield sun.security.ssl.SSLCipher.ivSize:I
            aload 3 /* sslCipher */
            getfield sun.security.ssl.SSLCipher.fixedIvSize:I
            isub
            putfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.recordIvSize:I
         6: .line 1615
            aload 0 /* this */
            aload 7 /* random */
            putfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.random:Ljava/security/SecureRandom;
         7: .line 1618
            return
        end local 7 // java.security.SecureRandom random
        end local 6 // java.security.spec.AlgorithmParameterSpec params
        end local 5 // java.security.Key key
        end local 4 // java.lang.String algorithm
        end local 3 // sun.security.ssl.SSLCipher sslCipher
        end local 2 // sun.security.ssl.ProtocolVersion protocolVersion
        end local 1 // sun.security.ssl.Authenticator authenticator
        end local 0 // sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    8     0             this  Lsun/security/ssl/SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher;
            0    8     1    authenticator  Lsun/security/ssl/Authenticator;
            0    8     2  protocolVersion  Lsun/security/ssl/ProtocolVersion;
            0    8     3        sslCipher  Lsun/security/ssl/SSLCipher;
            0    8     4        algorithm  Ljava/lang/String;
            0    8     5              key  Ljava/security/Key;
            0    8     6           params  Ljava/security/spec/AlgorithmParameterSpec;
            0    8     7           random  Ljava/security/SecureRandom;
    Exceptions:
      throws java.security.GeneralSecurityException
    MethodParameters:
                 Name  Flags
      authenticator    
      protocolVersion  
      sslCipher        
      algorithm        
      key              
      params           
      random           

  public sun.security.ssl.Plaintext decrypt(byte, java.nio.ByteBuffer, byte[]);
    descriptor: (BLjava/nio/ByteBuffer;[B)Lsun/security/ssl/Plaintext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=11, args_size=4
        start local 0 // sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher this
        start local 1 // byte contentType
        start local 2 // java.nio.ByteBuffer bb
        start local 3 // byte[] sequence
         0: .line 1623
            aload 2 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.recordIvSize:I
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.tagSize:I
            iadd
            if_icmpge 8
         1: .line 1624
            new javax.crypto.BadPaddingException
            dup
         2: .line 1625
            new java.lang.StringBuilder
            dup
            ldc "Insufficient buffer remaining for AEAD cipher fragment ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         3: .line 1626
            aload 2 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "). Needs to be "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 1627
            ldc "more than or equal to IV size ("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.recordIvSize:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         5: .line 1628
            ldc ") + tag size ("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.tagSize:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 1625
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 1624
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 1632
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.fixedIv:[B
         9: .line 1633
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.fixedIv:[B
            arraylength
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.recordIvSize:I
            iadd
        10: .line 1632
            invokestatic java.util.Arrays.copyOf:([BI)[B
            astore 4 /* iv */
        start local 4 // byte[] iv
        11: .line 1634
            aload 2 /* bb */
            aload 4 /* iv */
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.fixedIv:[B
            arraylength
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.recordIvSize:I
            invokevirtual java.nio.ByteBuffer.get:([BII)Ljava/nio/ByteBuffer;
            pop
        12: .line 1635
            new javax.crypto.spec.GCMParameterSpec
            dup
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.tagSize:I
            bipush 8
            imul
            aload 4 /* iv */
            invokespecial javax.crypto.spec.GCMParameterSpec.<init>:(I[B)V
            astore 5 /* spec */
        start local 5 // javax.crypto.spec.GCMParameterSpec spec
        13: .line 1637
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.cipher:Ljavax/crypto/Cipher;
            iconst_2
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.key:Ljava/security/Key;
            aload 5 /* spec */
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.random:Ljava/security/SecureRandom;
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
        14: .line 1638
            goto 19
        15: .line 1639
      StackMap locals: sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher int java.nio.ByteBuffer byte[] byte[] javax.crypto.spec.GCMParameterSpec
      StackMap stack: java.security.GeneralSecurityException
            astore 6 /* ikae */
        start local 6 // java.security.GeneralSecurityException ikae
        16: .line 1641
            new java.lang.RuntimeException
            dup
        17: .line 1642
            ldc "invalid key or spec in GCM mode"
            aload 6 /* ikae */
        18: .line 1641
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 6 // java.security.GeneralSecurityException ikae
        19: .line 1646
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.authenticator:Lsun/security/ssl/Authenticator;
        20: .line 1647
            iload 1 /* contentType */
            aload 2 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.tagSize:I
            isub
        21: .line 1648
            aload 3 /* sequence */
        22: .line 1646
            invokevirtual sun.security.ssl.Authenticator.acquireAuthenticationBytes:(BI[B)[B
            astore 6 /* aad */
        start local 6 // byte[] aad
        23: .line 1649
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.cipher:Ljavax/crypto/Cipher;
            aload 6 /* aad */
            invokevirtual javax.crypto.Cipher.updateAAD:([B)V
        24: .line 1653
            aload 2 /* bb */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 8 /* pos */
        start local 8 // int pos
        25: .line 1654
            aload 2 /* bb */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            astore 9 /* dup */
        start local 9 // java.nio.ByteBuffer dup
        26: .line 1656
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.cipher:Ljavax/crypto/Cipher;
            aload 9 /* dup */
            aload 2 /* bb */
            invokevirtual javax.crypto.Cipher.doFinal:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
            istore 7 /* len */
        start local 7 // int len
        27: .line 1657
            goto 38
        end local 7 // int len
      StackMap locals: sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher int java.nio.ByteBuffer byte[] byte[] javax.crypto.spec.GCMParameterSpec byte[] top int java.nio.ByteBuffer
      StackMap stack: javax.crypto.IllegalBlockSizeException
        28: astore 10 /* ibse */
        start local 10 // javax.crypto.IllegalBlockSizeException ibse
        29: .line 1659
            new java.lang.RuntimeException
            dup
        30: .line 1660
            new java.lang.StringBuilder
            dup
            ldc "Cipher error in AEAD mode \""
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 10 /* ibse */
            invokevirtual javax.crypto.IllegalBlockSizeException.getMessage:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        31: .line 1661
            ldc " \"in JCE provider "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.getProvider:()Ljava/security/Provider;
            invokevirtual java.security.Provider.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        32: .line 1660
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        33: .line 1659
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 10 // javax.crypto.IllegalBlockSizeException ibse
        34: .line 1662
      StackMap locals:
      StackMap stack: javax.crypto.ShortBufferException
            astore 10 /* sbe */
        start local 10 // javax.crypto.ShortBufferException sbe
        35: .line 1664
            new java.lang.RuntimeException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Cipher buffering error in JCE provider "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        36: .line 1665
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.getProvider:()Ljava/security/Provider;
            invokevirtual java.security.Provider.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 10 /* sbe */
        37: .line 1664
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 10 // javax.crypto.ShortBufferException sbe
        start local 7 // int len
        38: .line 1668
      StackMap locals: sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher int java.nio.ByteBuffer byte[] byte[] javax.crypto.spec.GCMParameterSpec byte[] int int java.nio.ByteBuffer
      StackMap stack:
            aload 2 /* bb */
            iload 8 /* pos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        39: .line 1669
            aload 2 /* bb */
            iload 8 /* pos */
            iload 7 /* len */
            iadd
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/ByteBuffer;
            pop
        40: .line 1671
            getstatic sun.security.ssl.SSLLogger.isOn:Z
            ifeq 43
            ldc "plaintext"
            invokestatic sun.security.ssl.SSLLogger.isOn:(Ljava/lang/String;)Z
            ifeq 43
        41: .line 1673
            ldc "Plaintext after DECRYPTION"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* bb */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            aastore
        42: .line 1672
            invokestatic sun.security.ssl.SSLLogger.fine:(Ljava/lang/String;[Ljava/lang/Object;)V
        43: .line 1676
      StackMap locals:
      StackMap stack:
            new sun.security.ssl.Plaintext
            dup
            iload 1 /* contentType */
        44: .line 1677
            getstatic sun.security.ssl.ProtocolVersion.NONE:Lsun/security/ssl/ProtocolVersion;
            getfield sun.security.ssl.ProtocolVersion.major:B
            getstatic sun.security.ssl.ProtocolVersion.NONE:Lsun/security/ssl/ProtocolVersion;
            getfield sun.security.ssl.ProtocolVersion.minor:B
        45: .line 1678
            iconst_m1
            ldc -1
            aload 2 /* bb */
            invokevirtual java.nio.ByteBuffer.slice:()Ljava/nio/ByteBuffer;
        46: .line 1676
            invokespecial sun.security.ssl.Plaintext.<init>:(BBBIJLjava/nio/ByteBuffer;)V
            areturn
        end local 9 // java.nio.ByteBuffer dup
        end local 8 // int pos
        end local 7 // int len
        end local 6 // byte[] aad
        end local 5 // javax.crypto.spec.GCMParameterSpec spec
        end local 4 // byte[] iv
        end local 3 // byte[] sequence
        end local 2 // java.nio.ByteBuffer bb
        end local 1 // byte contentType
        end local 0 // sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   47     0         this  Lsun/security/ssl/SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher;
            0   47     1  contentType  B
            0   47     2           bb  Ljava/nio/ByteBuffer;
            0   47     3     sequence  [B
           11   47     4           iv  [B
           13   47     5         spec  Ljavax/crypto/spec/GCMParameterSpec;
           16   19     6         ikae  Ljava/security/GeneralSecurityException;
           23   47     6          aad  [B
           27   28     7          len  I
           38   47     7          len  I
           25   47     8          pos  I
           26   47     9          dup  Ljava/nio/ByteBuffer;
           29   34    10         ibse  Ljavax/crypto/IllegalBlockSizeException;
           35   38    10          sbe  Ljavax/crypto/ShortBufferException;
      Exception table:
        from    to  target  type
          13    14      15  Class java.security.InvalidKeyException
          13    14      15  Class java.security.InvalidAlgorithmParameterException
          26    27      28  Class javax.crypto.IllegalBlockSizeException
          26    27      34  Class javax.crypto.ShortBufferException
    Exceptions:
      throws java.security.GeneralSecurityException
    MethodParameters:
             Name  Flags
      contentType  
      bb           
      sequence     

  void dispose();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher this
         0: .line 1683
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.cipher:Ljavax/crypto/Cipher;
            ifnull 4
         1: .line 1685
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.doFinal:()[B
            pop
         2: .line 1686
            goto 4
      StackMap locals:
      StackMap stack: java.lang.Exception
         3: pop
         4: .line 1690
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/ssl/SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Exception

  int estimateFragmentSize(int, int);
    descriptor: (II)I
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher this
        start local 1 // int packetSize
        start local 2 // int headerSize
         0: .line 1694
            iload 1 /* packetSize */
            iload 2 /* headerSize */
            isub
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.recordIvSize:I
            isub
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.tagSize:I
            isub
            ireturn
        end local 2 // int headerSize
        end local 1 // int packetSize
        end local 0 // sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lsun/security/ssl/SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher;
            0    1     1  packetSize  I
            0    1     2  headerSize  I
    MethodParameters:
            Name  Flags
      packetSize  
      headerSize  
}
SourceFile: "SSLCipher.java"
NestHost: sun.security.ssl.SSLCipher
InnerClasses:
  abstract SSLReadCipher = sun.security.ssl.SSLCipher$SSLReadCipher of sun.security.ssl.SSLCipher
  private final T12GcmReadCipherGenerator = sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator of sun.security.ssl.SSLCipher
  final GcmReadCipher = sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher of sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator