final class sun.security.ssl.CipherBox
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.ssl.CipherBox
  super_class: java.lang.Object
{
  static final sun.security.ssl.CipherBox NULL;
    descriptor: Lsun/security/ssl/CipherBox;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  private static final sun.security.ssl.Debug debug;
    descriptor: Lsun/security/ssl/Debug;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final sun.security.ssl.ProtocolVersion protocolVersion;
    descriptor: Lsun/security/ssl/ProtocolVersion;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final javax.crypto.Cipher cipher;
    descriptor: Ljavax/crypto/Cipher;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.security.SecureRandom random;
    descriptor: Ljava/security/SecureRandom;
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

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

  private final sun.security.ssl.CipherSuite$CipherType cipherType;
    descriptor: Lsun/security/ssl/CipherSuite$CipherType;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static java.util.Hashtable<java.lang.Integer, javax.crypto.spec.IvParameterSpec> masks;
    descriptor: Ljava/util/Hashtable;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Signature: Ljava/util/Hashtable<Ljava/lang/Integer;Ljavax/crypto/spec/IvParameterSpec;>;

  private static volatile int[] $SWITCH_TABLE$sun$security$ssl$CipherSuite$CipherType;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 96
            new sun.security.ssl.CipherBox
            dup
            invokespecial sun.security.ssl.CipherBox.<init>:()V
            putstatic sun.security.ssl.CipherBox.NULL:Lsun/security/ssl/CipherBox;
         1: .line 99
            ldc "ssl"
            invokestatic sun.security.ssl.Debug.getInstance:(Ljava/lang/String;)Lsun/security/ssl/Debug;
            putstatic sun.security.ssl.CipherBox.debug:Lsun/security/ssl/Debug;
         2: .line 151
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.security.ssl.CipherBox this
         0: .line 156
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 157
            aload 0 /* this */
            getstatic sun.security.ssl.ProtocolVersion.DEFAULT_TLS:Lsun/security/ssl/ProtocolVersion;
            putfield sun.security.ssl.CipherBox.protocolVersion:Lsun/security/ssl/ProtocolVersion;
         2: .line 158
            aload 0 /* this */
            aconst_null
            putfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
         3: .line 159
            aload 0 /* this */
            getstatic sun.security.ssl.CipherSuite$CipherType.NULL_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            putfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
         4: .line 160
            aload 0 /* this */
            iconst_0
            newarray 8
            putfield sun.security.ssl.CipherBox.fixedIv:[B
         5: .line 161
            aload 0 /* this */
            aconst_null
            putfield sun.security.ssl.CipherBox.key:Ljava/security/Key;
         6: .line 162
            aload 0 /* this */
            iconst_1
            putfield sun.security.ssl.CipherBox.mode:I
         7: .line 163
            aload 0 /* this */
            aconst_null
            putfield sun.security.ssl.CipherBox.random:Ljava/security/SecureRandom;
         8: .line 164
            aload 0 /* this */
            iconst_0
            putfield sun.security.ssl.CipherBox.tagSize:I
         9: .line 165
            aload 0 /* this */
            iconst_0
            putfield sun.security.ssl.CipherBox.recordIvSize:I
        10: .line 166
            return
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lsun/security/ssl/CipherBox;

  private void <init>(sun.security.ssl.ProtocolVersion, sun.security.ssl.CipherSuite$BulkCipher, javax.crypto.SecretKey, javax.crypto.spec.IvParameterSpec, java.security.SecureRandom, boolean);
    descriptor: (Lsun/security/ssl/ProtocolVersion;Lsun/security/ssl/CipherSuite$BulkCipher;Ljavax/crypto/SecretKey;Ljavax/crypto/spec/IvParameterSpec;Ljava/security/SecureRandom;Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=7
        start local 0 // sun.security.ssl.CipherBox this
        start local 1 // sun.security.ssl.ProtocolVersion protocolVersion
        start local 2 // sun.security.ssl.CipherSuite$BulkCipher bulkCipher
        start local 3 // javax.crypto.SecretKey key
        start local 4 // javax.crypto.spec.IvParameterSpec iv
        start local 5 // java.security.SecureRandom random
        start local 6 // boolean encrypt
         0: .line 174
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 178
            aload 0 /* this */
            aload 1 /* protocolVersion */
            putfield sun.security.ssl.CipherBox.protocolVersion:Lsun/security/ssl/ProtocolVersion;
         2: .line 179
            aload 0 /* this */
            aload 2 /* bulkCipher */
            getfield sun.security.ssl.CipherSuite$BulkCipher.transformation:Ljava/lang/String;
            invokestatic sun.security.ssl.JsseJce.getCipher:(Ljava/lang/String;)Ljavax/crypto/Cipher;
            putfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
         3: .line 180
            aload 0 /* this */
            iload 6 /* encrypt */
            ifeq 4
            iconst_1
            goto 5
      StackMap locals: sun.security.ssl.CipherBox sun.security.ssl.ProtocolVersion sun.security.ssl.CipherSuite$BulkCipher javax.crypto.SecretKey javax.crypto.spec.IvParameterSpec java.security.SecureRandom int
      StackMap stack: sun.security.ssl.CipherBox
         4: iconst_2
      StackMap locals: sun.security.ssl.CipherBox sun.security.ssl.ProtocolVersion sun.security.ssl.CipherSuite$BulkCipher javax.crypto.SecretKey javax.crypto.spec.IvParameterSpec java.security.SecureRandom int
      StackMap stack: sun.security.ssl.CipherBox int
         5: putfield sun.security.ssl.CipherBox.mode:I
         6: .line 182
            aload 5 /* random */
            ifnonnull 8
         7: .line 183
            invokestatic sun.security.ssl.JsseJce.getSecureRandom:()Ljava/security/SecureRandom;
            astore 5 /* random */
         8: .line 185
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 5 /* random */
            putfield sun.security.ssl.CipherBox.random:Ljava/security/SecureRandom;
         9: .line 186
            aload 0 /* this */
            aload 2 /* bulkCipher */
            getfield sun.security.ssl.CipherSuite$BulkCipher.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            putfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
        10: .line 198
            aload 4 /* iv */
            ifnonnull 14
            aload 2 /* bulkCipher */
            getfield sun.security.ssl.CipherSuite$BulkCipher.ivSize:I
            ifeq 14
        11: .line 199
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.mode:I
            iconst_2
            if_icmpne 14
        12: .line 200
            aload 1 /* protocolVersion */
            invokevirtual sun.security.ssl.ProtocolVersion.useTLS11PlusSpec:()Z
            ifeq 14
        13: .line 201
            aload 2 /* bulkCipher */
            getfield sun.security.ssl.CipherSuite$BulkCipher.ivSize:I
            invokestatic sun.security.ssl.CipherBox.getFixedMask:(I)Ljavax/crypto/spec/IvParameterSpec;
            astore 4 /* iv */
        14: .line 204
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            getstatic sun.security.ssl.CipherSuite$CipherType.AEAD_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            if_acmpne 23
        15: .line 210
            aload 0 /* this */
            aload 2 /* bulkCipher */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            bipush 16
            putfield sun.security.ssl.CipherBox.tagSize:I
        16: .line 213
            aload 0 /* this */
            aload 3 /* key */
            putfield sun.security.ssl.CipherBox.key:Ljava/security/Key;
        17: .line 215
            aload 0 /* this */
            aload 4 /* iv */
            invokevirtual javax.crypto.spec.IvParameterSpec.getIV:()[B
            putfield sun.security.ssl.CipherBox.fixedIv:[B
        18: .line 216
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.fixedIv:[B
            ifnull 20
        19: .line 217
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.fixedIv:[B
            arraylength
            aload 2 /* bulkCipher */
            getfield sun.security.ssl.CipherSuite$BulkCipher.fixedIvSize:I
            if_icmpeq 21
        20: .line 218
      StackMap locals:
      StackMap stack:
            new java.lang.RuntimeException
            dup
            ldc "Improper fixed IV for AEAD"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        21: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* bulkCipher */
            getfield sun.security.ssl.CipherSuite$BulkCipher.ivSize:I
            aload 2 /* bulkCipher */
            getfield sun.security.ssl.CipherSuite$BulkCipher.fixedIvSize:I
            isub
            putfield sun.security.ssl.CipherBox.recordIvSize:I
        22: .line 225
            goto 39
        23: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.ssl.CipherBox.tagSize:I
        24: .line 232
            aload 0 /* this */
            iconst_0
            newarray 8
            putfield sun.security.ssl.CipherBox.fixedIv:[B
        25: .line 233
            aload 0 /* this */
            iconst_0
            putfield sun.security.ssl.CipherBox.recordIvSize:I
        26: .line 234
            aload 0 /* this */
            aconst_null
            putfield sun.security.ssl.CipherBox.key:Ljava/security/Key;
        27: .line 237
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.mode:I
            aload 3 /* key */
            aload 4 /* iv */
            aload 5 /* random */
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
        28: .line 239
            goto 39
      StackMap locals:
      StackMap stack: java.security.NoSuchAlgorithmException
        29: astore 7 /* e */
        start local 7 // java.security.NoSuchAlgorithmException e
        30: .line 240
            aload 7 /* e */
            athrow
        end local 7 // java.security.NoSuchAlgorithmException e
        31: .line 241
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 7 /* e */
        start local 7 // java.lang.Exception e
        32: .line 242
            new java.security.NoSuchAlgorithmException
            dup
        33: .line 243
            new java.lang.StringBuilder
            dup
            ldc "Could not create cipher "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* bulkCipher */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 7 /* e */
        34: .line 242
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // java.lang.Exception e
        35: .line 244
      StackMap locals:
      StackMap stack: java.lang.ExceptionInInitializerError
            astore 7 /* e */
        start local 7 // java.lang.ExceptionInInitializerError e
        36: .line 245
            new java.security.NoSuchAlgorithmException
            dup
        37: .line 246
            new java.lang.StringBuilder
            dup
            ldc "Could not create cipher "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* bulkCipher */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 7 /* e */
        38: .line 245
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // java.lang.ExceptionInInitializerError e
        39: .line 248
      StackMap locals:
      StackMap stack:
            return
        end local 6 // boolean encrypt
        end local 5 // java.security.SecureRandom random
        end local 4 // javax.crypto.spec.IvParameterSpec iv
        end local 3 // javax.crypto.SecretKey key
        end local 2 // sun.security.ssl.CipherSuite$BulkCipher bulkCipher
        end local 1 // sun.security.ssl.ProtocolVersion protocolVersion
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   40     0             this  Lsun/security/ssl/CipherBox;
            0   40     1  protocolVersion  Lsun/security/ssl/ProtocolVersion;
            0   40     2       bulkCipher  Lsun/security/ssl/CipherSuite$BulkCipher;
            0   40     3              key  Ljavax/crypto/SecretKey;
            0   40     4               iv  Ljavax/crypto/spec/IvParameterSpec;
            0   40     5           random  Ljava/security/SecureRandom;
            0   40     6          encrypt  Z
           30   31     7                e  Ljava/security/NoSuchAlgorithmException;
           32   35     7                e  Ljava/lang/Exception;
           36   39     7                e  Ljava/lang/ExceptionInInitializerError;
      Exception table:
        from    to  target  type
           1    28      29  Class java.security.NoSuchAlgorithmException
           1    28      31  Class java.lang.Exception
           1    28      35  Class java.lang.ExceptionInInitializerError
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
                 Name  Flags
      protocolVersion  
      bulkCipher       
      key              
      iv               
      random           
      encrypt          

  static sun.security.ssl.CipherBox newCipherBox(sun.security.ssl.ProtocolVersion, sun.security.ssl.CipherSuite$BulkCipher, javax.crypto.SecretKey, javax.crypto.spec.IvParameterSpec, java.security.SecureRandom, boolean);
    descriptor: (Lsun/security/ssl/ProtocolVersion;Lsun/security/ssl/CipherSuite$BulkCipher;Ljavax/crypto/SecretKey;Ljavax/crypto/spec/IvParameterSpec;Ljava/security/SecureRandom;Z)Lsun/security/ssl/CipherBox;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=8, locals=6, args_size=6
        start local 0 // sun.security.ssl.ProtocolVersion version
        start local 1 // sun.security.ssl.CipherSuite$BulkCipher cipher
        start local 2 // javax.crypto.SecretKey key
        start local 3 // javax.crypto.spec.IvParameterSpec iv
        start local 4 // java.security.SecureRandom random
        start local 5 // boolean encrypt
         0: .line 256
            aload 1 /* cipher */
            getfield sun.security.ssl.CipherSuite$BulkCipher.allowed:Z
            ifne 2
         1: .line 257
            new java.security.NoSuchAlgorithmException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unsupported cipher "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* cipher */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 260
      StackMap locals:
      StackMap stack:
            aload 1 /* cipher */
            getstatic sun.security.ssl.CipherSuite$BulkCipher.B_NULL:Lsun/security/ssl/CipherSuite$BulkCipher;
            if_acmpne 4
         3: .line 261
            getstatic sun.security.ssl.CipherBox.NULL:Lsun/security/ssl/CipherBox;
            areturn
         4: .line 263
      StackMap locals:
      StackMap stack:
            new sun.security.ssl.CipherBox
            dup
            aload 0 /* version */
            aload 1 /* cipher */
            aload 2 /* key */
            aload 3 /* iv */
            aload 4 /* random */
            iload 5 /* encrypt */
            invokespecial sun.security.ssl.CipherBox.<init>:(Lsun/security/ssl/ProtocolVersion;Lsun/security/ssl/CipherSuite$BulkCipher;Ljavax/crypto/SecretKey;Ljavax/crypto/spec/IvParameterSpec;Ljava/security/SecureRandom;Z)V
            areturn
        end local 5 // boolean encrypt
        end local 4 // java.security.SecureRandom random
        end local 3 // javax.crypto.spec.IvParameterSpec iv
        end local 2 // javax.crypto.SecretKey key
        end local 1 // sun.security.ssl.CipherSuite$BulkCipher cipher
        end local 0 // sun.security.ssl.ProtocolVersion version
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0  version  Lsun/security/ssl/ProtocolVersion;
            0    5     1   cipher  Lsun/security/ssl/CipherSuite$BulkCipher;
            0    5     2      key  Ljavax/crypto/SecretKey;
            0    5     3       iv  Ljavax/crypto/spec/IvParameterSpec;
            0    5     4   random  Ljava/security/SecureRandom;
            0    5     5  encrypt  Z
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
         Name  Flags
      version  
      cipher   
      key      
      iv       
      random   
      encrypt  

  private static javax.crypto.spec.IvParameterSpec getFixedMask(int);
    descriptor: (I)Ljavax/crypto/spec/IvParameterSpec;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // int ivSize
         0: .line 271
            getstatic sun.security.ssl.CipherBox.masks:Ljava/util/Hashtable;
            ifnonnull 2
         1: .line 272
            new java.util.Hashtable
            dup
            iconst_5
            invokespecial java.util.Hashtable.<init>:(I)V
            putstatic sun.security.ssl.CipherBox.masks:Ljava/util/Hashtable;
         2: .line 275
      StackMap locals:
      StackMap stack:
            getstatic sun.security.ssl.CipherBox.masks:Ljava/util/Hashtable;
            iload 0 /* ivSize */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.util.Hashtable.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast javax.crypto.spec.IvParameterSpec
            astore 1 /* iv */
        start local 1 // javax.crypto.spec.IvParameterSpec iv
         3: .line 276
            aload 1 /* iv */
            ifnonnull 6
         4: .line 277
            new javax.crypto.spec.IvParameterSpec
            dup
            iload 0 /* ivSize */
            newarray 8
            invokespecial javax.crypto.spec.IvParameterSpec.<init>:([B)V
            astore 1 /* iv */
         5: .line 278
            getstatic sun.security.ssl.CipherBox.masks:Ljava/util/Hashtable;
            iload 0 /* ivSize */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 1 /* iv */
            invokevirtual java.util.Hashtable.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         6: .line 281
      StackMap locals: javax.crypto.spec.IvParameterSpec
      StackMap stack:
            aload 1 /* iv */
            areturn
        end local 1 // javax.crypto.spec.IvParameterSpec iv
        end local 0 // int ivSize
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0  ivSize  I
            3    7     1      iv  Ljavax/crypto/spec/IvParameterSpec;
    MethodParameters:
        Name  Flags
      ivSize  

  int encrypt(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0000) 
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // sun.security.ssl.CipherBox this
        start local 1 // byte[] buf
        start local 2 // int offset
        start local 3 // int len
         0: .line 289
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            ifnonnull 2
         1: .line 290
            iload 3 /* len */
            ireturn
         2: .line 294
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.getBlockSize:()I
            istore 4 /* blockSize */
        start local 4 // int blockSize
         3: .line 295
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            getstatic sun.security.ssl.CipherSuite$CipherType.BLOCK_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            if_acmpne 5
         4: .line 296
            aload 1 /* buf */
            iload 2 /* offset */
            iload 3 /* len */
            iload 4 /* blockSize */
            invokestatic sun.security.ssl.CipherBox.addPadding:([BIII)I
            istore 3 /* len */
         5: .line 299
      StackMap locals: int
      StackMap stack:
            getstatic sun.security.ssl.CipherBox.debug:Lsun/security/ssl/Debug;
            ifnull 18
            ldc "plaintext"
            invokestatic sun.security.ssl.Debug.isOn:(Ljava/lang/String;)Z
            ifeq 18
         6: .line 301
            new sun.security.util.HexDumpEncoder
            dup
            invokespecial sun.security.util.HexDumpEncoder.<init>:()V
            astore 5 /* hd */
        start local 5 // sun.security.util.HexDumpEncoder hd
         7: .line 303
            getstatic java.lang.System.out:Ljava/io/PrintStream;
         8: .line 304
            new java.lang.StringBuilder
            dup
            ldc "Padded plaintext before ENCRYPTION:  len = "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         9: .line 305
            iload 3 /* len */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        10: .line 304
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        11: .line 303
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        12: .line 306
            aload 5 /* hd */
        13: .line 307
            new java.io.ByteArrayInputStream
            dup
            aload 1 /* buf */
            iload 2 /* offset */
            iload 3 /* len */
            invokespecial java.io.ByteArrayInputStream.<init>:([BII)V
        14: .line 308
            getstatic java.lang.System.out:Ljava/io/PrintStream;
        15: .line 306
            invokevirtual sun.security.util.HexDumpEncoder.encodeBuffer:(Ljava/io/InputStream;Ljava/io/OutputStream;)V
        end local 5 // sun.security.util.HexDumpEncoder hd
        16: .line 309
            goto 18
      StackMap locals:
      StackMap stack: java.io.IOException
        17: pop
        18: .line 313
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            getstatic sun.security.ssl.CipherSuite$CipherType.AEAD_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            if_acmpne 28
        19: .line 315
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            aload 1 /* buf */
            iload 2 /* offset */
            iload 3 /* len */
            aload 1 /* buf */
            iload 2 /* offset */
            invokevirtual javax.crypto.Cipher.doFinal:([BII[BI)I
        20: ireturn
        21: .line 316
      StackMap locals:
      StackMap stack: java.security.GeneralSecurityException
            astore 5 /* ibe */
        start local 5 // java.security.GeneralSecurityException ibe
        22: .line 318
            new java.lang.RuntimeException
            dup
        23: .line 319
            new java.lang.StringBuilder
            dup
            ldc "Cipher error in AEAD mode in JCE provider "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        24: .line 320
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.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;
        25: .line 319
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        26: .line 320
            aload 5 /* ibe */
        27: .line 318
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.security.GeneralSecurityException ibe
        28: .line 323
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            aload 1 /* buf */
            iload 2 /* offset */
            iload 3 /* len */
            aload 1 /* buf */
            iload 2 /* offset */
            invokevirtual javax.crypto.Cipher.update:([BII[BI)I
            istore 5 /* newLen */
        start local 5 // int newLen
        29: .line 324
            iload 5 /* newLen */
            iload 3 /* len */
            if_icmpeq 33
        30: .line 326
            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
        31: .line 327
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.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;
        32: .line 326
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        33: .line 329
      StackMap locals: int
      StackMap stack:
            iload 5 /* newLen */
        34: ireturn
        end local 5 // int newLen
        end local 4 // int blockSize
        35: .line 331
      StackMap locals: sun.security.ssl.CipherBox byte[] int int
      StackMap stack: javax.crypto.ShortBufferException
            astore 4 /* e */
        start local 4 // javax.crypto.ShortBufferException e
        36: .line 333
            new java.lang.ArrayIndexOutOfBoundsException
            dup
            aload 4 /* e */
            invokevirtual javax.crypto.ShortBufferException.toString:()Ljava/lang/String;
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // javax.crypto.ShortBufferException e
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] buf
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   37     0       this  Lsun/security/ssl/CipherBox;
            0   37     1        buf  [B
            0   37     2     offset  I
            0   37     3        len  I
            3   35     4  blockSize  I
            7   16     5         hd  Lsun/security/util/HexDumpEncoder;
           22   28     5        ibe  Ljava/security/GeneralSecurityException;
           29   35     5     newLen  I
           36   37     4          e  Ljavax/crypto/ShortBufferException;
      Exception table:
        from    to  target  type
           6    16      17  Class java.io.IOException
          19    20      21  Class javax.crypto.IllegalBlockSizeException
          19    20      21  Class javax.crypto.BadPaddingException
           2    20      35  Class javax.crypto.ShortBufferException
          21    34      35  Class javax.crypto.ShortBufferException
    MethodParameters:
        Name  Flags
      buf     
      offset  
      len     

  int encrypt(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)I
    flags: (0x0000) 
    Code:
      stack=5, locals=9, args_size=3
        start local 0 // sun.security.ssl.CipherBox this
        start local 1 // java.nio.ByteBuffer bb
        start local 2 // int outLimit
         0: .line 348
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 3 /* len */
        start local 3 // int len
         1: .line 350
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            ifnonnull 4
         2: .line 351
            aload 1 /* bb */
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.limit:()I
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
         3: .line 352
            iload 3 /* len */
            ireturn
         4: .line 355
      StackMap locals: int
      StackMap stack:
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 4 /* pos */
        start local 4 // int pos
         5: .line 357
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.getBlockSize:()I
            istore 5 /* blockSize */
        start local 5 // int blockSize
         6: .line 358
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            getstatic sun.security.ssl.CipherSuite$CipherType.BLOCK_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            if_acmpne 9
         7: .line 360
            aload 1 /* bb */
            iload 5 /* blockSize */
            invokestatic sun.security.ssl.CipherBox.addPadding:(Ljava/nio/ByteBuffer;I)I
            istore 3 /* len */
         8: .line 361
            aload 1 /* bb */
            iload 4 /* pos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
         9: .line 364
      StackMap locals: int int
      StackMap stack:
            getstatic sun.security.ssl.CipherBox.debug:Lsun/security/ssl/Debug;
            ifnull 19
            ldc "plaintext"
            invokestatic sun.security.ssl.Debug.isOn:(Ljava/lang/String;)Z
            ifeq 19
        10: .line 366
            new sun.security.util.HexDumpEncoder
            dup
            invokespecial sun.security.util.HexDumpEncoder.<init>:()V
            astore 6 /* hd */
        start local 6 // sun.security.util.HexDumpEncoder hd
        11: .line 368
            getstatic java.lang.System.out:Ljava/io/PrintStream;
        12: .line 369
            new java.lang.StringBuilder
            dup
            ldc "Padded plaintext before ENCRYPTION:  len = "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        13: .line 370
            iload 3 /* len */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        14: .line 369
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        15: .line 368
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        16: .line 371
            aload 6 /* hd */
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            invokevirtual sun.security.util.HexDumpEncoder.encodeBuffer:(Ljava/nio/ByteBuffer;Ljava/io/OutputStream;)V
        end local 6 // sun.security.util.HexDumpEncoder hd
        17: .line 373
            goto 19
      StackMap locals:
      StackMap stack: java.io.IOException
        18: pop
        19: .line 379
      StackMap locals:
      StackMap stack:
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            astore 6 /* dup */
        start local 6 // java.nio.ByteBuffer dup
        20: .line 380
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            getstatic sun.security.ssl.CipherSuite$CipherType.AEAD_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            if_acmpne 44
        21: .line 382
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            aload 6 /* dup */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokevirtual javax.crypto.Cipher.getOutputSize:(I)I
            istore 7 /* outputSize */
        start local 7 // int outputSize
        22: .line 383
            iload 7 /* outputSize */
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            if_icmple 28
        23: .line 389
            iload 2 /* outLimit */
            iload 4 /* pos */
            iload 7 /* outputSize */
            iadd
            if_icmpge 27
        24: .line 391
            new javax.crypto.ShortBufferException
            dup
        25: .line 392
            ldc "need more space in output buffer"
        26: .line 391
            invokespecial javax.crypto.ShortBufferException.<init>:(Ljava/lang/String;)V
            athrow
        27: .line 394
      StackMap locals: java.nio.ByteBuffer int
      StackMap stack:
            aload 1 /* bb */
            iload 4 /* pos */
            iload 7 /* outputSize */
            iadd
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/ByteBuffer;
            pop
        28: .line 396
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            aload 6 /* dup */
            aload 1 /* bb */
            invokevirtual javax.crypto.Cipher.doFinal:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
            istore 8 /* newLen */
        start local 8 // int newLen
        29: .line 397
            iload 8 /* newLen */
            iload 7 /* outputSize */
            if_icmpeq 35
        30: .line 398
            new java.lang.RuntimeException
            dup
        31: .line 399
            new java.lang.StringBuilder
            dup
            ldc "Cipher buffering error in JCE provider "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        32: .line 400
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.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;
        33: .line 399
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        34: .line 398
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        35: .line 402
      StackMap locals: int
      StackMap stack:
            iload 8 /* newLen */
        36: ireturn
        end local 8 // int newLen
        end local 7 // int outputSize
        37: .line 404
      StackMap locals: sun.security.ssl.CipherBox java.nio.ByteBuffer int int int int java.nio.ByteBuffer
      StackMap stack: java.security.GeneralSecurityException
            astore 7 /* ibse */
        start local 7 // java.security.GeneralSecurityException ibse
        38: .line 406
            new java.lang.RuntimeException
            dup
        39: .line 407
            new java.lang.StringBuilder
            dup
            ldc "Cipher error in AEAD mode in JCE provider "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        40: .line 408
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.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;
        41: .line 407
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        42: .line 408
            aload 7 /* ibse */
        43: .line 406
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // java.security.GeneralSecurityException ibse
        44: .line 413
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            aload 6 /* dup */
            aload 1 /* bb */
            invokevirtual javax.crypto.Cipher.update:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
            istore 7 /* newLen */
        start local 7 // int newLen
        45: .line 414
            goto 50
        end local 7 // int newLen
      StackMap locals:
      StackMap stack: javax.crypto.ShortBufferException
        46: pop
        47: .line 416
            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
        48: .line 417
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.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;
        49: .line 416
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        start local 7 // int newLen
        50: .line 420
      StackMap locals: int
      StackMap stack:
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.position:()I
            aload 6 /* dup */
            invokevirtual java.nio.ByteBuffer.position:()I
            if_icmpeq 52
        51: .line 421
            new java.lang.RuntimeException
            dup
            ldc "bytebuffer padding error"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        52: .line 424
      StackMap locals:
      StackMap stack:
            iload 7 /* newLen */
            iload 3 /* len */
            if_icmpeq 56
        53: .line 426
            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
        54: .line 427
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.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;
        55: .line 426
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        56: .line 429
      StackMap locals:
      StackMap stack:
            iload 7 /* newLen */
            ireturn
        end local 7 // int newLen
        end local 6 // java.nio.ByteBuffer dup
        end local 5 // int blockSize
        end local 4 // int pos
        end local 3 // int len
        end local 2 // int outLimit
        end local 1 // java.nio.ByteBuffer bb
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   57     0        this  Lsun/security/ssl/CipherBox;
            0   57     1          bb  Ljava/nio/ByteBuffer;
            0   57     2    outLimit  I
            1   57     3         len  I
            5   57     4         pos  I
            6   57     5   blockSize  I
           11   17     6          hd  Lsun/security/util/HexDumpEncoder;
           20   57     6         dup  Ljava/nio/ByteBuffer;
           22   37     7  outputSize  I
           29   37     8      newLen  I
           38   44     7        ibse  Ljava/security/GeneralSecurityException;
           45   46     7      newLen  I
           50   57     7      newLen  I
      Exception table:
        from    to  target  type
          10    17      18  Class java.io.IOException
          21    36      37  Class javax.crypto.IllegalBlockSizeException
          21    36      37  Class javax.crypto.BadPaddingException
          21    36      37  Class javax.crypto.ShortBufferException
          44    45      46  Class javax.crypto.ShortBufferException
    MethodParameters:
          Name  Flags
      bb        
      outLimit  

  int decrypt(byte[], int, int, int);
    descriptor: ([BIII)I
    flags: (0x0000) 
    Code:
      stack=6, locals=7, args_size=5
        start local 0 // sun.security.ssl.CipherBox this
        start local 1 // byte[] buf
        start local 2 // int offset
        start local 3 // int len
        start local 4 // int tagLen
         0: .line 453
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            ifnonnull 2
         1: .line 454
            iload 3 /* len */
            ireturn
         2: .line 459
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            getstatic sun.security.ssl.CipherSuite$CipherType.AEAD_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            if_acmpne 12
         3: .line 461
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            aload 1 /* buf */
            iload 2 /* offset */
            iload 3 /* len */
            aload 1 /* buf */
            iload 2 /* offset */
            invokevirtual javax.crypto.Cipher.doFinal:([BII[BI)I
            istore 5 /* newLen */
        start local 5 // int newLen
         4: .line 462
            goto 17
        end local 5 // int newLen
      StackMap locals:
      StackMap stack: javax.crypto.IllegalBlockSizeException
         5: astore 6 /* ibse */
        start local 6 // javax.crypto.IllegalBlockSizeException ibse
         6: .line 464
            new java.lang.RuntimeException
            dup
         7: .line 465
            new java.lang.StringBuilder
            dup
            ldc "Cipher error in AEAD mode in JCE provider "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         8: .line 466
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.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;
         9: .line 465
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        10: .line 466
            aload 6 /* ibse */
        11: .line 464
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 6 // javax.crypto.IllegalBlockSizeException ibse
        12: .line 469
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            aload 1 /* buf */
            iload 2 /* offset */
            iload 3 /* len */
            aload 1 /* buf */
            iload 2 /* offset */
            invokevirtual javax.crypto.Cipher.update:([BII[BI)I
            istore 5 /* newLen */
        start local 5 // int newLen
        13: .line 470
            iload 5 /* newLen */
            iload 3 /* len */
            if_icmpeq 17
        14: .line 472
            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
        15: .line 473
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.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;
        16: .line 472
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 476
      StackMap locals: int
      StackMap stack:
            getstatic sun.security.ssl.CipherBox.debug:Lsun/security/ssl/Debug;
            ifnull 30
            ldc "plaintext"
            invokestatic sun.security.ssl.Debug.isOn:(Ljava/lang/String;)Z
            ifeq 30
        18: .line 478
            new sun.security.util.HexDumpEncoder
            dup
            invokespecial sun.security.util.HexDumpEncoder.<init>:()V
            astore 6 /* hd */
        start local 6 // sun.security.util.HexDumpEncoder hd
        19: .line 480
            getstatic java.lang.System.out:Ljava/io/PrintStream;
        20: .line 481
            new java.lang.StringBuilder
            dup
            ldc "Padded plaintext after DECRYPTION:  len = "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        21: .line 482
            iload 5 /* newLen */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        22: .line 481
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        23: .line 480
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        24: .line 483
            aload 6 /* hd */
        25: .line 484
            new java.io.ByteArrayInputStream
            dup
            aload 1 /* buf */
            iload 2 /* offset */
            iload 5 /* newLen */
            invokespecial java.io.ByteArrayInputStream.<init>:([BII)V
        26: .line 485
            getstatic java.lang.System.out:Ljava/io/PrintStream;
        27: .line 483
            invokevirtual sun.security.util.HexDumpEncoder.encodeBuffer:(Ljava/io/InputStream;Ljava/io/OutputStream;)V
        end local 6 // sun.security.util.HexDumpEncoder hd
        28: .line 486
            goto 30
      StackMap locals:
      StackMap stack: java.io.IOException
        29: pop
        30: .line 489
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            getstatic sun.security.ssl.CipherSuite$CipherType.BLOCK_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            if_acmpne 40
        31: .line 490
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.getBlockSize:()I
            istore 6 /* blockSize */
        start local 6 // int blockSize
        32: .line 492
            aload 1 /* buf */
            iload 2 /* offset */
            iload 5 /* newLen */
            iload 4 /* tagLen */
            iload 6 /* blockSize */
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.protocolVersion:Lsun/security/ssl/ProtocolVersion;
        33: .line 491
            invokestatic sun.security.ssl.CipherBox.removePadding:([BIIIILsun/security/ssl/ProtocolVersion;)I
            istore 5 /* newLen */
        34: .line 494
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.protocolVersion:Lsun/security/ssl/ProtocolVersion;
            invokevirtual sun.security.ssl.ProtocolVersion.useTLS11PlusSpec:()Z
            ifeq 40
        35: .line 495
            iload 5 /* newLen */
            iload 6 /* blockSize */
            if_icmpge 40
        36: .line 496
            new javax.crypto.BadPaddingException
            dup
            new java.lang.StringBuilder
            dup
            ldc "The length after padding removal ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        37: .line 497
            iload 5 /* newLen */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ") should be larger "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        38: .line 498
            ldc "than <"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 6 /* blockSize */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "> since explicit IV used"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        39: .line 496
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        end local 6 // int blockSize
        40: .line 502
      StackMap locals:
      StackMap stack:
            iload 5 /* newLen */
        41: ireturn
        end local 5 // int newLen
        42: .line 503
      StackMap locals: sun.security.ssl.CipherBox byte[] int int int
      StackMap stack: javax.crypto.ShortBufferException
            astore 5 /* e */
        start local 5 // javax.crypto.ShortBufferException e
        43: .line 505
            new java.lang.ArrayIndexOutOfBoundsException
            dup
            aload 5 /* e */
            invokevirtual javax.crypto.ShortBufferException.toString:()Ljava/lang/String;
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
        end local 5 // javax.crypto.ShortBufferException e
        end local 4 // int tagLen
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] buf
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   44     0       this  Lsun/security/ssl/CipherBox;
            0   44     1        buf  [B
            0   44     2     offset  I
            0   44     3        len  I
            0   44     4     tagLen  I
            4    5     5     newLen  I
           13   42     5     newLen  I
            6   12     6       ibse  Ljavax/crypto/IllegalBlockSizeException;
           19   28     6         hd  Lsun/security/util/HexDumpEncoder;
           32   40     6  blockSize  I
           43   44     5          e  Ljavax/crypto/ShortBufferException;
      Exception table:
        from    to  target  type
           3     4       5  Class javax.crypto.IllegalBlockSizeException
          18    28      29  Class java.io.IOException
           2    41      42  Class javax.crypto.ShortBufferException
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
        Name  Flags
      buf     
      offset  
      len     
      tagLen  

  int decrypt(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)I
    flags: (0x0000) 
    Code:
      stack=5, locals=8, args_size=3
        start local 0 // sun.security.ssl.CipherBox this
        start local 1 // java.nio.ByteBuffer bb
        start local 2 // int tagLen
         0: .line 520
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 3 /* len */
        start local 3 // int len
         1: .line 522
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            ifnonnull 4
         2: .line 523
            aload 1 /* bb */
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.limit:()I
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
         3: .line 524
            iload 3 /* len */
            ireturn
         4: .line 531
      StackMap locals: int
      StackMap stack:
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 4 /* pos */
        start local 4 // int pos
         5: .line 532
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            astore 5 /* dup */
        start local 5 // java.nio.ByteBuffer dup
         6: .line 534
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            getstatic sun.security.ssl.CipherSuite$CipherType.AEAD_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            if_acmpne 15
         7: .line 536
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            aload 5 /* dup */
            aload 1 /* bb */
            invokevirtual javax.crypto.Cipher.doFinal:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
            istore 6 /* newLen */
        start local 6 // int newLen
         8: .line 537
            goto 20
        end local 6 // int newLen
      StackMap locals: sun.security.ssl.CipherBox java.nio.ByteBuffer int int int java.nio.ByteBuffer
      StackMap stack: javax.crypto.IllegalBlockSizeException
         9: astore 7 /* ibse */
        start local 7 // javax.crypto.IllegalBlockSizeException ibse
        10: .line 539
            new java.lang.RuntimeException
            dup
        11: .line 540
            new java.lang.StringBuilder
            dup
            ldc "Cipher error in AEAD mode \""
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 7 /* ibse */
            invokevirtual javax.crypto.IllegalBlockSizeException.getMessage:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        12: .line 541
            ldc " \"in JCE provider "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.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;
        13: .line 540
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        14: .line 539
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 7 // javax.crypto.IllegalBlockSizeException ibse
        15: .line 544
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            aload 5 /* dup */
            aload 1 /* bb */
            invokevirtual javax.crypto.Cipher.update:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
            istore 6 /* newLen */
        start local 6 // int newLen
        16: .line 545
            iload 6 /* newLen */
            iload 3 /* len */
            if_icmpeq 20
        17: .line 547
            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
        18: .line 548
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.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;
        19: .line 547
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 553
      StackMap locals: int
      StackMap stack:
            aload 1 /* bb */
            iload 4 /* pos */
            iload 6 /* newLen */
            iadd
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/ByteBuffer;
            pop
        21: .line 555
            getstatic sun.security.ssl.CipherBox.debug:Lsun/security/ssl/Debug;
            ifnull 33
            ldc "plaintext"
            invokestatic sun.security.ssl.Debug.isOn:(Ljava/lang/String;)Z
            ifeq 33
        22: .line 557
            new sun.security.util.HexDumpEncoder
            dup
            invokespecial sun.security.util.HexDumpEncoder.<init>:()V
            astore 7 /* hd */
        start local 7 // sun.security.util.HexDumpEncoder hd
        23: .line 559
            getstatic java.lang.System.out:Ljava/io/PrintStream;
        24: .line 560
            new java.lang.StringBuilder
            dup
            ldc "Padded plaintext after DECRYPTION:  len = "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        25: .line 561
            iload 6 /* newLen */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        26: .line 560
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        27: .line 559
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        28: .line 563
            aload 7 /* hd */
        29: .line 564
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            iload 4 /* pos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            getstatic java.lang.System.out:Ljava/io/PrintStream;
        30: .line 563
            invokevirtual sun.security.util.HexDumpEncoder.encodeBuffer:(Ljava/nio/ByteBuffer;Ljava/io/OutputStream;)V
        end local 7 // sun.security.util.HexDumpEncoder hd
        31: .line 565
            goto 33
      StackMap locals:
      StackMap stack: java.io.IOException
        32: pop
        33: .line 571
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            getstatic sun.security.ssl.CipherSuite$CipherType.BLOCK_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            if_acmpne 44
        34: .line 572
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.getBlockSize:()I
            istore 7 /* blockSize */
        start local 7 // int blockSize
        35: .line 573
            aload 1 /* bb */
            iload 4 /* pos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        36: .line 574
            aload 1 /* bb */
            iload 2 /* tagLen */
            iload 7 /* blockSize */
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.protocolVersion:Lsun/security/ssl/ProtocolVersion;
            invokestatic sun.security.ssl.CipherBox.removePadding:(Ljava/nio/ByteBuffer;IILsun/security/ssl/ProtocolVersion;)I
            istore 6 /* newLen */
        37: .line 577
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.protocolVersion:Lsun/security/ssl/ProtocolVersion;
            invokevirtual sun.security.ssl.ProtocolVersion.useTLS11PlusSpec:()Z
            ifeq 44
        38: .line 578
            iload 6 /* newLen */
            iload 7 /* blockSize */
            if_icmpge 43
        39: .line 579
            new javax.crypto.BadPaddingException
            dup
            new java.lang.StringBuilder
            dup
            ldc "The length after padding removal ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        40: .line 580
            iload 6 /* newLen */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ") should be larger "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        41: .line 581
            ldc "than <"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 7 /* blockSize */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "> since explicit IV used"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        42: .line 579
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        43: .line 585
      StackMap locals: int
      StackMap stack:
            aload 1 /* bb */
            aload 1 /* bb */
            invokevirtual java.nio.ByteBuffer.limit:()I
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        end local 7 // int blockSize
        44: .line 588
      StackMap locals:
      StackMap stack:
            iload 6 /* newLen */
        45: ireturn
        end local 6 // int newLen
        end local 5 // java.nio.ByteBuffer dup
        end local 4 // int pos
        46: .line 589
      StackMap locals: sun.security.ssl.CipherBox java.nio.ByteBuffer int int
      StackMap stack: javax.crypto.ShortBufferException
            astore 4 /* e */
        start local 4 // javax.crypto.ShortBufferException e
        47: .line 591
            new java.lang.ArrayIndexOutOfBoundsException
            dup
            aload 4 /* e */
            invokevirtual javax.crypto.ShortBufferException.toString:()Ljava/lang/String;
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // javax.crypto.ShortBufferException e
        end local 3 // int len
        end local 2 // int tagLen
        end local 1 // java.nio.ByteBuffer bb
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   48     0       this  Lsun/security/ssl/CipherBox;
            0   48     1         bb  Ljava/nio/ByteBuffer;
            0   48     2     tagLen  I
            1   48     3        len  I
            5   46     4        pos  I
            6   46     5        dup  Ljava/nio/ByteBuffer;
            8    9     6     newLen  I
           16   46     6     newLen  I
           10   15     7       ibse  Ljavax/crypto/IllegalBlockSizeException;
           23   31     7         hd  Lsun/security/util/HexDumpEncoder;
           35   44     7  blockSize  I
           47   48     4          e  Ljavax/crypto/ShortBufferException;
      Exception table:
        from    to  target  type
           7     8       9  Class javax.crypto.IllegalBlockSizeException
          22    31      32  Class java.io.IOException
           4    45      46  Class javax.crypto.ShortBufferException
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
        Name  Flags
      bb      
      tagLen  

  private static int addPadding(byte[], int, int, int);
    descriptor: ([BIII)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // byte[] buf
        start local 1 // int offset
        start local 2 // int len
        start local 3 // int blockSize
         0: .line 597
            iload 2 /* len */
            iconst_1
            iadd
            istore 4 /* newlen */
        start local 4 // int newlen
         1: .line 601
            iload 4 /* newlen */
            iload 3 /* blockSize */
            irem
            ifeq 4
         2: .line 602
            iload 4 /* newlen */
            iload 3 /* blockSize */
            iconst_1
            isub
            iadd
            istore 4 /* newlen */
         3: .line 603
            iload 4 /* newlen */
            iload 4 /* newlen */
            iload 3 /* blockSize */
            irem
            isub
            istore 4 /* newlen */
         4: .line 605
      StackMap locals: int
      StackMap stack:
            iload 4 /* newlen */
            iload 2 /* len */
            isub
            i2b
            istore 5 /* pad */
        start local 5 // byte pad
         5: .line 607
            aload 0 /* buf */
            arraylength
            iload 4 /* newlen */
            iload 1 /* offset */
            iadd
            if_icmpge 7
         6: .line 608
            new java.lang.IllegalArgumentException
            dup
            ldc "no space to pad buffer"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 614
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         8: iload 1 /* offset */
            iload 2 /* len */
            iadd
            istore 1 /* offset */
            goto 11
         9: .line 615
      StackMap locals: int
      StackMap stack:
            aload 0 /* buf */
            iload 1 /* offset */
            iinc 1 /* offset */ 1
            iload 5 /* pad */
            iconst_1
            isub
            i2b
            bastore
        10: .line 614
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 6 /* i */
            iload 5 /* pad */
            if_icmplt 9
        12: .line 617
            iload 4 /* newlen */
            ireturn
        end local 6 // int i
        end local 5 // byte pad
        end local 4 // int newlen
        end local 3 // int blockSize
        end local 2 // int len
        end local 1 // int offset
        end local 0 // byte[] buf
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0        buf  [B
            0   13     1     offset  I
            0   13     2        len  I
            0   13     3  blockSize  I
            1   13     4     newlen  I
            5   13     5        pad  B
            8   13     6          i  I
    MethodParameters:
           Name  Flags
      buf        
      offset     
      len        
      blockSize  

  private static int addPadding(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // java.nio.ByteBuffer bb
        start local 1 // int blockSize
         0: .line 628
            aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 629
            aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 3 /* offset */
        start local 3 // int offset
         2: .line 631
            iload 2 /* len */
            iconst_1
            iadd
            istore 4 /* newlen */
        start local 4 // int newlen
         3: .line 635
            iload 4 /* newlen */
            iload 1 /* blockSize */
            irem
            ifeq 6
         4: .line 636
            iload 4 /* newlen */
            iload 1 /* blockSize */
            iconst_1
            isub
            iadd
            istore 4 /* newlen */
         5: .line 637
            iload 4 /* newlen */
            iload 4 /* newlen */
            iload 1 /* blockSize */
            irem
            isub
            istore 4 /* newlen */
         6: .line 639
      StackMap locals: int int int
      StackMap stack:
            iload 4 /* newlen */
            iload 2 /* len */
            isub
            i2b
            istore 5 /* pad */
        start local 5 // byte pad
         7: .line 644
            aload 0 /* bb */
            iload 4 /* newlen */
            iload 3 /* offset */
            iadd
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/ByteBuffer;
            pop
         8: .line 649
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         9: iload 3 /* offset */
            iload 2 /* len */
            iadd
            istore 3 /* offset */
            goto 12
        10: .line 650
      StackMap locals: int int
      StackMap stack:
            aload 0 /* bb */
            iload 3 /* offset */
            iinc 3 /* offset */ 1
            iload 5 /* pad */
            iconst_1
            isub
            i2b
            invokevirtual java.nio.ByteBuffer.put:(IB)Ljava/nio/ByteBuffer;
            pop
        11: .line 649
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 6 /* i */
            iload 5 /* pad */
            if_icmplt 10
        13: .line 653
            aload 0 /* bb */
            iload 3 /* offset */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        14: .line 654
            aload 0 /* bb */
            iload 3 /* offset */
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/ByteBuffer;
            pop
        15: .line 656
            iload 4 /* newlen */
            ireturn
        end local 6 // int i
        end local 5 // byte pad
        end local 4 // int newlen
        end local 3 // int offset
        end local 2 // int len
        end local 1 // int blockSize
        end local 0 // java.nio.ByteBuffer bb
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   16     0         bb  Ljava/nio/ByteBuffer;
            0   16     1  blockSize  I
            1   16     2        len  I
            2   16     3     offset  I
            3   16     4     newlen  I
            7   16     5        pad  B
            9   16     6          i  I
    MethodParameters:
           Name  Flags
      bb         
      blockSize  

  private static int[] checkPadding(byte[], int, int, byte);
    descriptor: ([BIIB)[I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // byte[] buf
        start local 1 // int offset
        start local 2 // int len
        start local 3 // byte pad
         0: .line 669
            iload 2 /* len */
            ifgt 2
         1: .line 670
            new java.lang.RuntimeException
            dup
            ldc "padding len must be positive"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 675
      StackMap locals:
      StackMap stack:
            iconst_2
            newarray 10
            astore 4 /* results */
        start local 4 // int[] results
         3: .line 676
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         4: goto 13
         5: .line 677
      StackMap locals: int[] int
      StackMap stack:
            iconst_0
            istore 6 /* j */
        start local 6 // int j
         6: goto 12
         7: .line 678
      StackMap locals: int
      StackMap stack:
            aload 0 /* buf */
            iload 1 /* offset */
            iload 6 /* j */
            iadd
            baload
            iload 3 /* pad */
            if_icmpeq 10
         8: .line 679
            aload 4 /* results */
            iconst_0
            dup2
            iaload
            iconst_1
            iadd
            iastore
         9: .line 680
            goto 11
        10: .line 681
      StackMap locals:
      StackMap stack:
            aload 4 /* results */
            iconst_1
            dup2
            iaload
            iconst_1
            iadd
            iastore
        11: .line 677
      StackMap locals:
      StackMap stack:
            iinc 6 /* j */ 1
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 6 /* j */
            iload 2 /* len */
            if_icmpge 13
            iload 5 /* i */
            sipush 256
            if_icmple 7
        end local 6 // int j
        13: .line 676
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            sipush 256
            if_icmple 5
        end local 5 // int i
        14: .line 686
            aload 4 /* results */
            areturn
        end local 4 // int[] results
        end local 3 // byte pad
        end local 2 // int len
        end local 1 // int offset
        end local 0 // byte[] buf
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   15     0      buf  [B
            0   15     1   offset  I
            0   15     2      len  I
            0   15     3      pad  B
            3   15     4  results  [I
            4   14     5        i  I
            6   13     6        j  I
    MethodParameters:
        Name  Flags
      buf     
      offset  
      len     
      pad     

  private static int[] checkPadding(java.nio.ByteBuffer, byte);
    descriptor: (Ljava/nio/ByteBuffer;B)[I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // java.nio.ByteBuffer bb
        start local 1 // byte pad
         0: .line 698
            aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 2
         1: .line 699
            new java.lang.RuntimeException
            dup
            ldc "hasRemaining() must be positive"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 704
      StackMap locals:
      StackMap stack:
            iconst_2
            newarray 10
            astore 2 /* results */
        start local 2 // int[] results
         3: .line 705
            aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.mark:()Ljava/nio/ByteBuffer;
            pop
         4: .line 706
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         5: goto 13
         6: .line 708
      StackMap locals: int[] int
      StackMap stack:
            aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.get:()B
            iload 1 /* pad */
            if_icmpeq 9
         7: .line 709
            aload 2 /* results */
            iconst_0
            dup2
            iaload
            iconst_1
            iadd
            iastore
         8: .line 710
            goto 10
         9: .line 711
      StackMap locals:
      StackMap stack:
            aload 2 /* results */
            iconst_1
            dup2
            iaload
            iconst_1
            iadd
            iastore
        10: .line 707
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifeq 12
            iload 3 /* i */
            sipush 256
            if_icmple 6
        12: .line 706
      StackMap locals:
      StackMap stack:
            aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.reset:()Ljava/nio/ByteBuffer;
            pop
      StackMap locals:
      StackMap stack:
        13: iload 3 /* i */
            sipush 256
            if_icmple 11
        end local 3 // int i
        14: .line 716
            aload 2 /* results */
            areturn
        end local 2 // int[] results
        end local 1 // byte pad
        end local 0 // java.nio.ByteBuffer bb
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   15     0       bb  Ljava/nio/ByteBuffer;
            0   15     1      pad  B
            3   15     2  results  [I
            5   14     3        i  I
    MethodParameters:
      Name  Flags
      bb    
      pad   

  private static int removePadding(byte[], int, int, int, int, sun.security.ssl.ProtocolVersion);
    descriptor: ([BIIIILsun/security/ssl/ProtocolVersion;)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=10, args_size=6
        start local 0 // byte[] buf
        start local 1 // int offset
        start local 2 // int len
        start local 3 // int tagLen
        start local 4 // int blockSize
        start local 5 // sun.security.ssl.ProtocolVersion protocolVersion
         0: .line 734
            iload 1 /* offset */
            iload 2 /* len */
            iadd
            iconst_1
            isub
            istore 6 /* padOffset */
        start local 6 // int padOffset
         1: .line 735
            aload 0 /* buf */
            iload 6 /* padOffset */
            baload
            sipush 255
            iand
            istore 7 /* padLen */
        start local 7 // int padLen
         2: .line 737
            iload 2 /* len */
            iload 7 /* padLen */
            iconst_1
            iadd
            isub
            istore 8 /* newLen */
        start local 8 // int newLen
         3: .line 738
            iload 8 /* newLen */
            iload 3 /* tagLen */
            isub
            ifge 6
         4: .line 744
            aload 0 /* buf */
            iload 1 /* offset */
            iload 2 /* len */
            iload 7 /* padLen */
            sipush 255
            iand
            i2b
            invokestatic sun.security.ssl.CipherBox.checkPadding:([BIIB)[I
            pop
         5: .line 746
            new javax.crypto.BadPaddingException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid Padding length: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 7 /* padLen */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 750
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* buf */
            iload 1 /* offset */
            iload 8 /* newLen */
            iadd
         7: .line 751
            iload 7 /* padLen */
            iconst_1
            iadd
            iload 7 /* padLen */
            sipush 255
            iand
            i2b
         8: .line 750
            invokestatic sun.security.ssl.CipherBox.checkPadding:([BIIB)[I
            astore 9 /* results */
        start local 9 // int[] results
         9: .line 752
            aload 5 /* protocolVersion */
            invokevirtual sun.security.ssl.ProtocolVersion.useTLS10PlusSpec:()Z
            ifeq 12
        10: .line 753
            aload 9 /* results */
            iconst_0
            iaload
            ifeq 17
        11: .line 754
            new javax.crypto.BadPaddingException
            dup
            ldc "Invalid TLS padding data"
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 761
      StackMap locals: int[]
      StackMap stack:
            iload 7 /* padLen */
            iload 4 /* blockSize */
            if_icmple 17
        13: .line 762
            new javax.crypto.BadPaddingException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Padding length ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        14: .line 763
            iload 7 /* padLen */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ") of SSLv3 message should not be bigger "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        15: .line 764
            ldc "than the block size ("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 4 /* blockSize */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        16: .line 762
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 767
      StackMap locals:
      StackMap stack:
            iload 8 /* newLen */
            ireturn
        end local 9 // int[] results
        end local 8 // int newLen
        end local 7 // int padLen
        end local 6 // int padOffset
        end local 5 // sun.security.ssl.ProtocolVersion protocolVersion
        end local 4 // int blockSize
        end local 3 // int tagLen
        end local 2 // int len
        end local 1 // int offset
        end local 0 // byte[] buf
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   18     0              buf  [B
            0   18     1           offset  I
            0   18     2              len  I
            0   18     3           tagLen  I
            0   18     4        blockSize  I
            0   18     5  protocolVersion  Lsun/security/ssl/ProtocolVersion;
            1   18     6        padOffset  I
            2   18     7           padLen  I
            3   18     8           newLen  I
            9   18     9          results  [I
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
                 Name  Flags
      buf              
      offset           
      len              
      tagLen           
      blockSize        
      protocolVersion  

  private static int removePadding(java.nio.ByteBuffer, int, int, sun.security.ssl.ProtocolVersion);
    descriptor: (Ljava/nio/ByteBuffer;IILsun/security/ssl/ProtocolVersion;)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=10, args_size=4
        start local 0 // java.nio.ByteBuffer bb
        start local 1 // int tagLen
        start local 2 // int blockSize
        start local 3 // sun.security.ssl.ProtocolVersion protocolVersion
         0: .line 777
            aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 4 /* len */
        start local 4 // int len
         1: .line 778
            aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 5 /* offset */
        start local 5 // int offset
         2: .line 781
            iload 5 /* offset */
            iload 4 /* len */
            iadd
            iconst_1
            isub
            istore 6 /* padOffset */
        start local 6 // int padOffset
         3: .line 782
            aload 0 /* bb */
            iload 6 /* padOffset */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 7 /* padLen */
        start local 7 // int padLen
         4: .line 784
            iload 4 /* len */
            iload 7 /* padLen */
            iconst_1
            iadd
            isub
            istore 8 /* newLen */
        start local 8 // int newLen
         5: .line 785
            iload 8 /* newLen */
            iload 1 /* tagLen */
            isub
            ifge 8
         6: .line 791
            aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            iload 7 /* padLen */
            sipush 255
            iand
            i2b
            invokestatic sun.security.ssl.CipherBox.checkPadding:(Ljava/nio/ByteBuffer;B)[I
            pop
         7: .line 793
            new javax.crypto.BadPaddingException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid Padding length: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 7 /* padLen */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 798
      StackMap locals: java.nio.ByteBuffer int int sun.security.ssl.ProtocolVersion int int int int int
      StackMap stack:
            aload 0 /* bb */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            iload 5 /* offset */
            iload 8 /* newLen */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
         9: .line 799
            iload 7 /* padLen */
            sipush 255
            iand
            i2b
        10: .line 797
            invokestatic sun.security.ssl.CipherBox.checkPadding:(Ljava/nio/ByteBuffer;B)[I
            astore 9 /* results */
        start local 9 // int[] results
        11: .line 800
            aload 3 /* protocolVersion */
            invokevirtual sun.security.ssl.ProtocolVersion.useTLS10PlusSpec:()Z
            ifeq 14
        12: .line 801
            aload 9 /* results */
            iconst_0
            iaload
            ifeq 19
        13: .line 802
            new javax.crypto.BadPaddingException
            dup
            ldc "Invalid TLS padding data"
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 809
      StackMap locals: int[]
      StackMap stack:
            iload 7 /* padLen */
            iload 2 /* blockSize */
            if_icmple 19
        15: .line 810
            new javax.crypto.BadPaddingException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Padding length ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        16: .line 811
            iload 7 /* padLen */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ") of SSLv3 message should not be bigger "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        17: .line 812
            ldc "than the block size ("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* blockSize */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        18: .line 810
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        19: .line 819
      StackMap locals:
      StackMap stack:
            aload 0 /* bb */
            iload 5 /* offset */
            iload 8 /* newLen */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        20: .line 820
            aload 0 /* bb */
            iload 5 /* offset */
            iload 8 /* newLen */
            iadd
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/ByteBuffer;
            pop
        21: .line 822
            iload 8 /* newLen */
            ireturn
        end local 9 // int[] results
        end local 8 // int newLen
        end local 7 // int padLen
        end local 6 // int padOffset
        end local 5 // int offset
        end local 4 // int len
        end local 3 // sun.security.ssl.ProtocolVersion protocolVersion
        end local 2 // int blockSize
        end local 1 // int tagLen
        end local 0 // java.nio.ByteBuffer bb
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   22     0               bb  Ljava/nio/ByteBuffer;
            0   22     1           tagLen  I
            0   22     2        blockSize  I
            0   22     3  protocolVersion  Lsun/security/ssl/ProtocolVersion;
            1   22     4              len  I
            2   22     5           offset  I
            3   22     6        padOffset  I
            4   22     7           padLen  I
            5   22     8           newLen  I
           11   22     9          results  [I
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
                 Name  Flags
      bb               
      tagLen           
      blockSize        
      protocolVersion  

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

  boolean isCBCMode();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.security.ssl.CipherBox this
         0: .line 847
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            getstatic sun.security.ssl.CipherSuite$CipherType.BLOCK_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/CipherBox;

  boolean isAEADMode();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.security.ssl.CipherBox this
         0: .line 856
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            getstatic sun.security.ssl.CipherSuite$CipherType.AEAD_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/CipherBox;

  boolean isNullCipher();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.CipherBox this
         0: .line 865
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            ifnonnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/CipherBox;

  int getExplicitNonceSize();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.security.ssl.CipherBox this
         0: .line 878
            invokestatic sun.security.ssl.CipherBox.$SWITCH_TABLE$sun$security$ssl$CipherSuite$CipherType:()[I
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            invokevirtual sun.security.ssl.CipherSuite$CipherType.ordinal:()I
            iaload
            tableswitch { // 3 - 4
                    3: 1
                    4: 3
              default: 4
          }
         1: .line 883
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.protocolVersion:Lsun/security/ssl/ProtocolVersion;
            invokevirtual sun.security.ssl.ProtocolVersion.useTLS11PlusSpec:()Z
            ifeq 4
         2: .line 884
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.getBlockSize:()I
            ireturn
         3: .line 888
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.recordIvSize:I
            ireturn
         4: .line 893
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/ssl/CipherBox;

  int applyExplicitNonce(sun.security.ssl.Authenticator, byte, java.nio.ByteBuffer, byte[]);
    descriptor: (Lsun/security/ssl/Authenticator;BLjava/nio/ByteBuffer;[B)I
    flags: (0x0000) 
    Code:
      stack=5, locals=9, args_size=5
        start local 0 // sun.security.ssl.CipherBox this
        start local 1 // sun.security.ssl.Authenticator authenticator
        start local 2 // byte contentType
        start local 3 // java.nio.ByteBuffer bb
        start local 4 // byte[] sequence
         0: .line 913
            invokestatic sun.security.ssl.CipherBox.$SWITCH_TABLE$sun$security$ssl$CipherSuite$CipherType:()[I
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            invokevirtual sun.security.ssl.CipherSuite$CipherType.ordinal:()I
            iaload
            tableswitch { // 3 - 4
                    3: 1
                    4: 12
              default: 38
          }
         1: .line 916
      StackMap locals:
      StackMap stack:
            aload 1 /* authenticator */
            instanceof sun.security.ssl.MAC
            ifeq 3
         2: .line 917
            aload 1 /* authenticator */
            checkcast sun.security.ssl.MAC
            invokevirtual sun.security.ssl.MAC.MAClen:()I
            goto 4
      StackMap locals:
      StackMap stack:
         3: iconst_0
         4: .line 916
      StackMap locals:
      StackMap stack: int
            istore 5 /* tagLen */
        start local 5 // int tagLen
         5: .line 918
            iload 5 /* tagLen */
            ifeq 10
         6: .line 919
            aload 0 /* this */
            iload 5 /* tagLen */
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokevirtual sun.security.ssl.CipherBox.sanityCheck:(II)Z
            ifne 10
         7: .line 920
            new javax.crypto.BadPaddingException
            dup
         8: .line 921
            ldc "ciphertext sanity check failed"
         9: .line 920
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 928
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.protocolVersion:Lsun/security/ssl/ProtocolVersion;
            invokevirtual sun.security.ssl.ProtocolVersion.useTLS11PlusSpec:()Z
            ifeq 38
        11: .line 929
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.getBlockSize:()I
            ireturn
        end local 5 // int tagLen
        12: .line 933
      StackMap locals:
      StackMap stack:
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.recordIvSize:I
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.tagSize:I
            iadd
            if_icmpge 20
        13: .line 934
            new javax.crypto.BadPaddingException
            dup
        14: .line 935
            new java.lang.StringBuilder
            dup
            ldc "Insufficient buffer remaining for AEAD cipher fragment ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        15: .line 936
            aload 3 /* 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;
        16: .line 937
            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.CipherBox.recordIvSize:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        17: .line 938
            ldc ") + tag size ("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.tagSize:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        18: .line 935
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        19: .line 934
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 942
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.fixedIv:[B
        21: .line 943
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.fixedIv:[B
            arraylength
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.recordIvSize:I
            iadd
        22: .line 942
            invokestatic java.util.Arrays.copyOf:([BI)[B
            astore 6 /* iv */
        start local 6 // byte[] iv
        23: .line 944
            aload 3 /* bb */
            aload 6 /* iv */
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.fixedIv:[B
            arraylength
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.recordIvSize:I
            invokevirtual java.nio.ByteBuffer.get:([BII)Ljava/nio/ByteBuffer;
            pop
        24: .line 945
            aload 3 /* bb */
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.position:()I
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.recordIvSize:I
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        25: .line 946
            new javax.crypto.spec.GCMParameterSpec
            dup
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.tagSize:I
            bipush 8
            imul
            aload 6 /* iv */
            invokespecial javax.crypto.spec.GCMParameterSpec.<init>:(I[B)V
            astore 7 /* spec */
        start local 7 // javax.crypto.spec.GCMParameterSpec spec
        26: .line 948
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.mode:I
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.key:Ljava/security/Key;
            aload 7 /* spec */
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.random:Ljava/security/SecureRandom;
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
        27: .line 949
            goto 32
        28: .line 950
      StackMap locals: sun.security.ssl.CipherBox sun.security.ssl.Authenticator int java.nio.ByteBuffer byte[] top byte[] javax.crypto.spec.GCMParameterSpec
      StackMap stack: java.security.GeneralSecurityException
            astore 8 /* ikae */
        start local 8 // java.security.GeneralSecurityException ikae
        29: .line 952
            new java.lang.RuntimeException
            dup
        30: .line 953
            ldc "invalid key or spec in GCM mode"
            aload 8 /* ikae */
        31: .line 952
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 8 // java.security.GeneralSecurityException ikae
        32: .line 957
      StackMap locals:
      StackMap stack:
            aload 1 /* authenticator */
        33: .line 958
            iload 2 /* contentType */
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.recordIvSize:I
            isub
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.tagSize:I
            isub
        34: .line 959
            aload 4 /* sequence */
        35: .line 957
            invokevirtual sun.security.ssl.Authenticator.acquireAuthenticationBytes:(BI[B)[B
            astore 8 /* aad */
        start local 8 // byte[] aad
        36: .line 960
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            aload 8 /* aad */
            invokevirtual javax.crypto.Cipher.updateAAD:([B)V
        37: .line 962
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.recordIvSize:I
            ireturn
        end local 8 // byte[] aad
        end local 7 // javax.crypto.spec.GCMParameterSpec spec
        end local 6 // byte[] iv
        38: .line 967
      StackMap locals: sun.security.ssl.CipherBox sun.security.ssl.Authenticator int java.nio.ByteBuffer byte[]
      StackMap stack:
            iconst_0
            ireturn
        end local 4 // byte[] sequence
        end local 3 // java.nio.ByteBuffer bb
        end local 2 // byte contentType
        end local 1 // sun.security.ssl.Authenticator authenticator
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   39     0           this  Lsun/security/ssl/CipherBox;
            0   39     1  authenticator  Lsun/security/ssl/Authenticator;
            0   39     2    contentType  B
            0   39     3             bb  Ljava/nio/ByteBuffer;
            0   39     4       sequence  [B
            5   12     5         tagLen  I
           23   38     6             iv  [B
           26   38     7           spec  Ljavax/crypto/spec/GCMParameterSpec;
           29   32     8           ikae  Ljava/security/GeneralSecurityException;
           36   38     8            aad  [B
      Exception table:
        from    to  target  type
          26    27      28  Class java.security.InvalidKeyException
          26    27      28  Class java.security.InvalidAlgorithmParameterException
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
               Name  Flags
      authenticator  
      contentType    
      bb             
      sequence       

  byte[] createExplicitNonce(sun.security.ssl.Authenticator, byte, int);
    descriptor: (Lsun/security/ssl/Authenticator;BI)[B
    flags: (0x0000) 
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // sun.security.ssl.CipherBox this
        start local 1 // sun.security.ssl.Authenticator authenticator
        start local 2 // byte contentType
        start local 3 // int fragmentLength
         0: .line 989
            iconst_0
            newarray 8
            astore 4 /* nonce */
        start local 4 // byte[] nonce
         1: .line 990
            invokestatic sun.security.ssl.CipherBox.$SWITCH_TABLE$sun$security$ssl$CipherSuite$CipherType:()[I
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            invokevirtual sun.security.ssl.CipherSuite$CipherType.ordinal:()I
            iaload
            tableswitch { // 3 - 4
                    3: 2
                    4: 6
              default: 22
          }
         2: .line 992
      StackMap locals: byte[]
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.protocolVersion:Lsun/security/ssl/ProtocolVersion;
            invokevirtual sun.security.ssl.ProtocolVersion.useTLS11PlusSpec:()Z
            ifeq 22
         3: .line 998
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.getBlockSize:()I
            newarray 8
            astore 4 /* nonce */
         4: .line 999
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.random:Ljava/security/SecureRandom;
            aload 4 /* nonce */
            invokevirtual java.security.SecureRandom.nextBytes:([B)V
         5: .line 1001
            goto 22
         6: .line 1005
      StackMap locals:
      StackMap stack:
            aload 1 /* authenticator */
            invokevirtual sun.security.ssl.Authenticator.sequenceNumber:()[B
            astore 4 /* nonce */
         7: .line 1008
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.fixedIv:[B
         8: .line 1009
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.fixedIv:[B
            arraylength
            aload 4 /* nonce */
            arraylength
            iadd
         9: .line 1008
            invokestatic java.util.Arrays.copyOf:([BI)[B
            astore 5 /* iv */
        start local 5 // byte[] iv
        10: .line 1010
            aload 4 /* nonce */
            iconst_0
            aload 5 /* iv */
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.fixedIv:[B
            arraylength
            aload 4 /* nonce */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        11: .line 1011
            new javax.crypto.spec.GCMParameterSpec
            dup
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.tagSize:I
            bipush 8
            imul
            aload 5 /* iv */
            invokespecial javax.crypto.spec.GCMParameterSpec.<init>:(I[B)V
            astore 6 /* spec */
        start local 6 // javax.crypto.spec.GCMParameterSpec spec
        12: .line 1013
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.mode:I
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.key:Ljava/security/Key;
            aload 6 /* spec */
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.random:Ljava/security/SecureRandom;
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
        13: .line 1014
            goto 18
        14: .line 1015
      StackMap locals: sun.security.ssl.CipherBox sun.security.ssl.Authenticator int int byte[] byte[] javax.crypto.spec.GCMParameterSpec
      StackMap stack: java.security.GeneralSecurityException
            astore 7 /* ikae */
        start local 7 // java.security.GeneralSecurityException ikae
        15: .line 1017
            new java.lang.RuntimeException
            dup
        16: .line 1018
            ldc "invalid key or spec in GCM mode"
            aload 7 /* ikae */
        17: .line 1017
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // java.security.GeneralSecurityException ikae
        18: .line 1023
      StackMap locals:
      StackMap stack:
            aload 1 /* authenticator */
        19: .line 1024
            iload 2 /* contentType */
            iload 3 /* fragmentLength */
            aconst_null
        20: .line 1023
            invokevirtual sun.security.ssl.Authenticator.acquireAuthenticationBytes:(BI[B)[B
            astore 7 /* aad */
        start local 7 // byte[] aad
        21: .line 1025
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            aload 7 /* aad */
            invokevirtual javax.crypto.Cipher.updateAAD:([B)V
        end local 7 // byte[] aad
        end local 6 // javax.crypto.spec.GCMParameterSpec spec
        end local 5 // byte[] iv
        22: .line 1029
      StackMap locals:
      StackMap stack:
            aload 4 /* nonce */
            areturn
        end local 4 // byte[] nonce
        end local 3 // int fragmentLength
        end local 2 // byte contentType
        end local 1 // sun.security.ssl.Authenticator authenticator
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   23     0            this  Lsun/security/ssl/CipherBox;
            0   23     1   authenticator  Lsun/security/ssl/Authenticator;
            0   23     2     contentType  B
            0   23     3  fragmentLength  I
            1   23     4           nonce  [B
           10   22     5              iv  [B
           12   22     6            spec  Ljavax/crypto/spec/GCMParameterSpec;
           15   18     7            ikae  Ljava/security/GeneralSecurityException;
           21   22     7             aad  [B
      Exception table:
        from    to  target  type
          12    13      14  Class java.security.InvalidKeyException
          12    13      14  Class java.security.InvalidAlgorithmParameterException
    MethodParameters:
                Name  Flags
      authenticator   
      contentType     
      fragmentLength  

  int calculatePacketSize(int, int, int);
    descriptor: (III)I
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // sun.security.ssl.CipherBox this
        start local 1 // int fragmentSize
        start local 2 // int macLen
        start local 3 // int headerSize
         0: .line 1034
            iload 1 /* fragmentSize */
            istore 4 /* packetSize */
        start local 4 // int packetSize
         1: .line 1035
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            ifnull 15
         2: .line 1036
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.getBlockSize:()I
            istore 5 /* blockSize */
        start local 5 // int blockSize
         3: .line 1037
            invokestatic sun.security.ssl.CipherBox.$SWITCH_TABLE$sun$security$ssl$CipherSuite$CipherType:()[I
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            invokevirtual sun.security.ssl.CipherSuite$CipherType.ordinal:()I
            iaload
            tableswitch { // 3 - 4
                    3: 4
                    4: 11
              default: 14
          }
         4: .line 1039
      StackMap locals: int int
      StackMap stack:
            iload 4 /* packetSize */
            iload 2 /* macLen */
            iadd
            istore 4 /* packetSize */
         5: .line 1040
            iinc 4 /* packetSize */ 1
         6: .line 1041
            iload 4 /* packetSize */
         7: .line 1042
            iload 5 /* blockSize */
            iload 4 /* packetSize */
            iload 5 /* blockSize */
            irem
            isub
            iload 5 /* blockSize */
            irem
            iadd
            istore 4 /* packetSize */
         8: .line 1043
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.protocolVersion:Lsun/security/ssl/ProtocolVersion;
            invokevirtual sun.security.ssl.ProtocolVersion.useTLS11PlusSpec:()Z
            ifeq 15
         9: .line 1044
            iload 4 /* packetSize */
            iload 5 /* blockSize */
            iadd
            istore 4 /* packetSize */
        10: .line 1047
            goto 15
        11: .line 1049
      StackMap locals:
      StackMap stack:
            iload 4 /* packetSize */
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.recordIvSize:I
            iadd
            istore 4 /* packetSize */
        12: .line 1050
            iload 4 /* packetSize */
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.tagSize:I
            iadd
            istore 4 /* packetSize */
        13: .line 1052
            goto 15
        14: .line 1054
      StackMap locals:
      StackMap stack:
            iload 4 /* packetSize */
            iload 2 /* macLen */
            iadd
            istore 4 /* packetSize */
        end local 5 // int blockSize
        15: .line 1058
      StackMap locals:
      StackMap stack:
            iload 4 /* packetSize */
            iload 3 /* headerSize */
            iadd
            ireturn
        end local 4 // int packetSize
        end local 3 // int headerSize
        end local 2 // int macLen
        end local 1 // int fragmentSize
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lsun/security/ssl/CipherBox;
            0   16     1  fragmentSize  I
            0   16     2        macLen  I
            0   16     3    headerSize  I
            1   16     4    packetSize  I
            3   15     5     blockSize  I
    MethodParameters:
              Name  Flags
      fragmentSize  
      macLen        
      headerSize    

  int calculateFragmentSize(int, int, int);
    descriptor: (III)I
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // sun.security.ssl.CipherBox this
        start local 1 // int packetLimit
        start local 2 // int macLen
        start local 3 // int headerSize
         0: .line 1063
            iload 1 /* packetLimit */
            iload 3 /* headerSize */
            isub
            istore 4 /* fragLen */
        start local 4 // int fragLen
         1: .line 1064
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            ifnull 14
         2: .line 1065
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.getBlockSize:()I
            istore 5 /* blockSize */
        start local 5 // int blockSize
         3: .line 1066
            invokestatic sun.security.ssl.CipherBox.$SWITCH_TABLE$sun$security$ssl$CipherSuite$CipherType:()[I
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            invokevirtual sun.security.ssl.CipherSuite$CipherType.ordinal:()I
            iaload
            tableswitch { // 3 - 4
                    3: 4
                    4: 10
              default: 13
          }
         4: .line 1068
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.protocolVersion:Lsun/security/ssl/ProtocolVersion;
            invokevirtual sun.security.ssl.ProtocolVersion.useTLS11PlusSpec:()Z
            ifeq 6
         5: .line 1069
            iload 4 /* fragLen */
            iload 5 /* blockSize */
            isub
            istore 4 /* fragLen */
         6: .line 1071
      StackMap locals:
      StackMap stack:
            iload 4 /* fragLen */
            iload 4 /* fragLen */
            iload 5 /* blockSize */
            irem
            isub
            istore 4 /* fragLen */
         7: .line 1073
            iinc 4 /* fragLen */ -1
         8: .line 1074
            iload 4 /* fragLen */
            iload 2 /* macLen */
            isub
            istore 4 /* fragLen */
         9: .line 1076
            goto 14
        10: .line 1078
      StackMap locals:
      StackMap stack:
            iload 4 /* fragLen */
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.recordIvSize:I
            isub
            istore 4 /* fragLen */
        11: .line 1079
            iload 4 /* fragLen */
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.tagSize:I
            isub
            istore 4 /* fragLen */
        12: .line 1081
            goto 14
        13: .line 1083
      StackMap locals:
      StackMap stack:
            iload 4 /* fragLen */
            iload 2 /* macLen */
            isub
            istore 4 /* fragLen */
        end local 5 // int blockSize
        14: .line 1087
      StackMap locals:
      StackMap stack:
            iload 4 /* fragLen */
            ireturn
        end local 4 // int fragLen
        end local 3 // int headerSize
        end local 2 // int macLen
        end local 1 // int packetLimit
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   15     0         this  Lsun/security/ssl/CipherBox;
            0   15     1  packetLimit  I
            0   15     2       macLen  I
            0   15     3   headerSize  I
            1   15     4      fragLen  I
            3   14     5    blockSize  I
    MethodParameters:
             Name  Flags
      packetLimit  
      macLen       
      headerSize   

  int estimateFragmentSize(int, int, int);
    descriptor: (III)I
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=4
        start local 0 // sun.security.ssl.CipherBox this
        start local 1 // int packetSize
        start local 2 // int macLen
        start local 3 // int headerSize
         0: .line 1092
            iload 1 /* packetSize */
            iload 3 /* headerSize */
            isub
            istore 4 /* fragLen */
        start local 4 // int fragLen
         1: .line 1093
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            ifnull 13
         2: .line 1094
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.getBlockSize:()I
            istore 5 /* blockSize */
        start local 5 // int blockSize
         3: .line 1095
            invokestatic sun.security.ssl.CipherBox.$SWITCH_TABLE$sun$security$ssl$CipherSuite$CipherType:()[I
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipherType:Lsun/security/ssl/CipherSuite$CipherType;
            invokevirtual sun.security.ssl.CipherSuite$CipherType.ordinal:()I
            iaload
            tableswitch { // 3 - 4
                    3: 4
                    4: 9
              default: 12
          }
         4: .line 1097
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.protocolVersion:Lsun/security/ssl/ProtocolVersion;
            invokevirtual sun.security.ssl.ProtocolVersion.useTLS11PlusSpec:()Z
            ifeq 6
         5: .line 1098
            iload 4 /* fragLen */
            iload 5 /* blockSize */
            isub
            istore 4 /* fragLen */
         6: .line 1101
      StackMap locals:
      StackMap stack:
            iinc 4 /* fragLen */ -1
         7: .line 1102
            iload 4 /* fragLen */
            iload 2 /* macLen */
            isub
            istore 4 /* fragLen */
         8: .line 1104
            goto 13
         9: .line 1106
      StackMap locals:
      StackMap stack:
            iload 4 /* fragLen */
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.recordIvSize:I
            isub
            istore 4 /* fragLen */
        10: .line 1107
            iload 4 /* fragLen */
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.tagSize:I
            isub
            istore 4 /* fragLen */
        11: .line 1109
            goto 13
        12: .line 1111
      StackMap locals:
      StackMap stack:
            iload 4 /* fragLen */
            iload 2 /* macLen */
            isub
            istore 4 /* fragLen */
        end local 5 // int blockSize
        13: .line 1115
      StackMap locals:
      StackMap stack:
            iload 4 /* fragLen */
            ireturn
        end local 4 // int fragLen
        end local 3 // int headerSize
        end local 2 // int macLen
        end local 1 // int packetSize
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lsun/security/ssl/CipherBox;
            0   14     1  packetSize  I
            0   14     2      macLen  I
            0   14     3  headerSize  I
            1   14     4     fragLen  I
            3   13     5   blockSize  I
    MethodParameters:
            Name  Flags
      packetSize  
      macLen      
      headerSize  

  private boolean sanityCheck(int, int);
    descriptor: (II)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // sun.security.ssl.CipherBox this
        start local 1 // int tagLen
        start local 2 // int fragmentLen
         0: .line 1132
            aload 0 /* this */
            invokevirtual sun.security.ssl.CipherBox.isCBCMode:()Z
            ifne 3
         1: .line 1133
            iload 2 /* fragmentLen */
            iload 1 /* tagLen */
            if_icmplt 2
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
         3: .line 1136
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.getBlockSize:()I
            istore 3 /* blockSize */
        start local 3 // int blockSize
         4: .line 1137
            iload 2 /* fragmentLen */
            iload 3 /* blockSize */
            irem
            ifne 13
         5: .line 1138
            iload 1 /* tagLen */
            iconst_1
            iadd
            istore 4 /* minimal */
        start local 4 // int minimal
         6: .line 1139
            iload 4 /* minimal */
            iload 3 /* blockSize */
            if_icmplt 7
            iload 4 /* minimal */
            goto 8
      StackMap locals: int int
      StackMap stack:
         7: iload 3 /* blockSize */
      StackMap locals:
      StackMap stack: int
         8: istore 4 /* minimal */
         9: .line 1140
            aload 0 /* this */
            getfield sun.security.ssl.CipherBox.protocolVersion:Lsun/security/ssl/ProtocolVersion;
            invokevirtual sun.security.ssl.ProtocolVersion.useTLS11PlusSpec:()Z
            ifeq 11
        10: .line 1141
            iload 4 /* minimal */
            iload 3 /* blockSize */
            iadd
            istore 4 /* minimal */
        11: .line 1144
      StackMap locals:
      StackMap stack:
            iload 2 /* fragmentLen */
            iload 4 /* minimal */
            if_icmplt 12
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        12: iconst_0
            ireturn
        end local 4 // int minimal
        13: .line 1147
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // int blockSize
        end local 2 // int fragmentLen
        end local 1 // int tagLen
        end local 0 // sun.security.ssl.CipherBox this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Lsun/security/ssl/CipherBox;
            0   14     1       tagLen  I
            0   14     2  fragmentLen  I
            4   14     3    blockSize  I
            6   13     4      minimal  I
    MethodParameters:
             Name  Flags
      tagLen       
      fragmentLen  

  static int[] $SWITCH_TABLE$sun$security$ssl$CipherSuite$CipherType();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 93
            getstatic sun.security.ssl.CipherBox.$SWITCH_TABLE$sun$security$ssl$CipherSuite$CipherType:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic sun.security.ssl.CipherSuite$CipherType.values:()[Lsun/security/ssl/CipherSuite$CipherType;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic sun.security.ssl.CipherSuite$CipherType.AEAD_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            invokevirtual sun.security.ssl.CipherSuite$CipherType.ordinal:()I
            iconst_4
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic sun.security.ssl.CipherSuite$CipherType.BLOCK_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            invokevirtual sun.security.ssl.CipherSuite$CipherType.ordinal:()I
            iconst_3
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic sun.security.ssl.CipherSuite$CipherType.NULL_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            invokevirtual sun.security.ssl.CipherSuite$CipherType.ordinal:()I
            iconst_1
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            getstatic sun.security.ssl.CipherSuite$CipherType.STREAM_CIPHER:Lsun/security/ssl/CipherSuite$CipherType;
            invokevirtual sun.security.ssl.CipherSuite$CipherType.ordinal:()I
            iconst_2
            iastore
        12: goto 14
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        13: pop
      StackMap locals:
      StackMap stack:
        14: aload 0
            dup
            putstatic sun.security.ssl.CipherBox.$SWITCH_TABLE$sun$security$ssl$CipherSuite$CipherType:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
          11    12      13  Class java.lang.NoSuchFieldError
}
SourceFile: "CipherBox.java"
InnerClasses:
  final BulkCipher = sun.security.ssl.CipherSuite$BulkCipher of sun.security.ssl.CipherSuite
  final CipherType = sun.security.ssl.CipherSuite$CipherType of sun.security.ssl.CipherSuite