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

  void <init>(sun.security.ssl.Authenticator, sun.security.ssl.ProtocolVersion, java.lang.String, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom);
    descriptor: (Lsun/security/ssl/Authenticator;Lsun/security/ssl/ProtocolVersion;Ljava/lang/String;Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=7, args_size=7
        start local 0 // sun.security.ssl.SSLCipher$StreamReadCipherGenerator$StreamReadCipher this
        start local 1 // sun.security.ssl.Authenticator authenticator
        start local 2 // sun.security.ssl.ProtocolVersion protocolVersion
        start local 3 // java.lang.String algorithm
        start local 4 // java.security.Key key
        start local 5 // java.security.spec.AlgorithmParameterSpec params
        start local 6 // java.security.SecureRandom random
         0: .line 820
            aload 0 /* this */
            aload 1 /* authenticator */
            aload 2 /* protocolVersion */
            invokespecial sun.security.ssl.SSLCipher$SSLReadCipher.<init>:(Lsun/security/ssl/Authenticator;Lsun/security/ssl/ProtocolVersion;)V
         1: .line 821
            aload 0 /* this */
            aload 3 /* algorithm */
            invokestatic sun.security.ssl.JsseJce.getCipher:(Ljava/lang/String;)Ljavax/crypto/Cipher;
            putfield sun.security.ssl.SSLCipher$StreamReadCipherGenerator$StreamReadCipher.cipher:Ljavax/crypto/Cipher;
         2: .line 822
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$StreamReadCipherGenerator$StreamReadCipher.cipher:Ljavax/crypto/Cipher;
            iconst_2
            aload 4 /* key */
            aload 5 /* params */
            aload 6 /* random */
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
         3: .line 823
            return
        end local 6 // java.security.SecureRandom random
        end local 5 // java.security.spec.AlgorithmParameterSpec params
        end local 4 // java.security.Key key
        end local 3 // java.lang.String algorithm
        end local 2 // sun.security.ssl.ProtocolVersion protocolVersion
        end local 1 // sun.security.ssl.Authenticator authenticator
        end local 0 // sun.security.ssl.SSLCipher$StreamReadCipherGenerator$StreamReadCipher this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lsun/security/ssl/SSLCipher$StreamReadCipherGenerator$StreamReadCipher;
            0    4     1    authenticator  Lsun/security/ssl/Authenticator;
            0    4     2  protocolVersion  Lsun/security/ssl/ProtocolVersion;
            0    4     3        algorithm  Ljava/lang/String;
            0    4     4              key  Ljava/security/Key;
            0    4     5           params  Ljava/security/spec/AlgorithmParameterSpec;
            0    4     6           random  Ljava/security/SecureRandom;
    Exceptions:
      throws java.security.GeneralSecurityException
    MethodParameters:
                 Name  Flags
      authenticator    
      protocolVersion  
      algorithm        
      key              
      params           
      random           

  public sun.security.ssl.Plaintext decrypt(byte, java.nio.ByteBuffer, byte[]);
    descriptor: (BLjava/nio/ByteBuffer;[B)Lsun/security/ssl/Plaintext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=8, args_size=4
        start local 0 // sun.security.ssl.SSLCipher$StreamReadCipherGenerator$StreamReadCipher this
        start local 1 // byte contentType
        start local 2 // java.nio.ByteBuffer bb
        start local 3 // byte[] sequence
         0: .line 828
            aload 2 /* bb */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 4 /* len */
        start local 4 // int len
         1: .line 829
            aload 2 /* bb */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 5 /* pos */
        start local 5 // int pos
         2: .line 830
            aload 2 /* bb */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            astore 6 /* dup */
        start local 6 // java.nio.ByteBuffer dup
         3: .line 832
            iload 4 /* len */
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$StreamReadCipherGenerator$StreamReadCipher.cipher:Ljavax/crypto/Cipher;
            aload 6 /* dup */
            aload 2 /* bb */
            invokevirtual javax.crypto.Cipher.update:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
            if_icmpeq 7
         4: .line 834
            new java.lang.RuntimeException
            dup
         5: .line 835
            ldc "Unexpected number of plaintext bytes"
         6: .line 834
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 837
      StackMap locals: int int java.nio.ByteBuffer
      StackMap stack:
            aload 2 /* bb */
            invokevirtual java.nio.ByteBuffer.position:()I
            aload 6 /* dup */
            invokevirtual java.nio.ByteBuffer.position:()I
            if_icmpeq 15
         8: .line 838
            new java.lang.RuntimeException
            dup
         9: .line 839
            ldc "Unexpected ByteBuffer position"
        10: .line 838
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 841
      StackMap locals:
      StackMap stack: javax.crypto.ShortBufferException
            astore 7 /* sbe */
        start local 7 // javax.crypto.ShortBufferException sbe
        12: .line 843
            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
        13: .line 844
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$StreamReadCipherGenerator$StreamReadCipher.cipher:Ljavax/crypto/Cipher;
            invokevirtual javax.crypto.Cipher.getProvider:()Ljava/security/Provider;
            invokevirtual java.security.Provider.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 7 /* sbe */
        14: .line 843
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // javax.crypto.ShortBufferException sbe
        15: .line 846
      StackMap locals:
      StackMap stack:
            aload 2 /* bb */
            iload 5 /* pos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        16: .line 847
            getstatic sun.security.ssl.SSLLogger.isOn:Z
            ifeq 19
            ldc "plaintext"
            invokestatic sun.security.ssl.SSLLogger.isOn:(Ljava/lang/String;)Z
            ifeq 19
        17: .line 849
            ldc "Plaintext after DECRYPTION"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* bb */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            aastore
        18: .line 848
            invokestatic sun.security.ssl.SSLLogger.fine:(Ljava/lang/String;[Ljava/lang/Object;)V
        19: .line 852
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$StreamReadCipherGenerator$StreamReadCipher.authenticator:Lsun/security/ssl/Authenticator;
            checkcast sun.security.ssl.Authenticator$MAC
            astore 7 /* signer */
        start local 7 // sun.security.ssl.Authenticator$MAC signer
        20: .line 853
            aload 7 /* signer */
            invokeinterface sun.security.ssl.Authenticator$MAC.macAlg:()Lsun/security/ssl/CipherSuite$MacAlg;
            getfield sun.security.ssl.CipherSuite$MacAlg.size:I
            ifeq 23
        21: .line 854
            aload 7 /* signer */
            aload 2 /* bb */
            iload 1 /* contentType */
            aload 3 /* sequence */
            invokestatic sun.security.ssl.SSLCipher.checkStreamMac:(Lsun/security/ssl/Authenticator$MAC;Ljava/nio/ByteBuffer;B[B)V
        22: .line 855
            goto 24
        23: .line 856
      StackMap locals: sun.security.ssl.Authenticator$MAC
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$StreamReadCipherGenerator$StreamReadCipher.authenticator:Lsun/security/ssl/Authenticator;
            invokevirtual sun.security.ssl.Authenticator.increaseSequenceNumber:()V
        24: .line 859
      StackMap locals:
      StackMap stack:
            new sun.security.ssl.Plaintext
            dup
            iload 1 /* contentType */
        25: .line 860
            getstatic sun.security.ssl.ProtocolVersion.NONE:Lsun/security/ssl/ProtocolVersion;
            getfield sun.security.ssl.ProtocolVersion.major:B
            getstatic sun.security.ssl.ProtocolVersion.NONE:Lsun/security/ssl/ProtocolVersion;
            getfield sun.security.ssl.ProtocolVersion.minor:B
        26: .line 861
            iconst_m1
            ldc -1
            aload 2 /* bb */
            invokevirtual java.nio.ByteBuffer.slice:()Ljava/nio/ByteBuffer;
        27: .line 859
            invokespecial sun.security.ssl.Plaintext.<init>:(BBBIJLjava/nio/ByteBuffer;)V
            areturn
        end local 7 // sun.security.ssl.Authenticator$MAC signer
        end local 6 // java.nio.ByteBuffer dup
        end local 5 // int pos
        end local 4 // int len
        end local 3 // byte[] sequence
        end local 2 // java.nio.ByteBuffer bb
        end local 1 // byte contentType
        end local 0 // sun.security.ssl.SSLCipher$StreamReadCipherGenerator$StreamReadCipher this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   28     0         this  Lsun/security/ssl/SSLCipher$StreamReadCipherGenerator$StreamReadCipher;
            0   28     1  contentType  B
            0   28     2           bb  Ljava/nio/ByteBuffer;
            0   28     3     sequence  [B
            1   28     4          len  I
            2   28     5          pos  I
            3   28     6          dup  Ljava/nio/ByteBuffer;
           12   15     7          sbe  Ljavax/crypto/ShortBufferException;
           20   28     7       signer  Lsun/security/ssl/Authenticator$MAC;
      Exception table:
        from    to  target  type
           3    11      11  Class javax.crypto.ShortBufferException
    Exceptions:
      throws java.security.GeneralSecurityException
    MethodParameters:
             Name  Flags
      contentType  
      bb           
      sequence     

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

  int estimateFragmentSize(int, int);
    descriptor: (II)I
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // sun.security.ssl.SSLCipher$StreamReadCipherGenerator$StreamReadCipher this
        start local 1 // int packetSize
        start local 2 // int headerSize
         0: .line 877
            aload 0 /* this */
            getfield sun.security.ssl.SSLCipher$StreamReadCipherGenerator$StreamReadCipher.authenticator:Lsun/security/ssl/Authenticator;
            checkcast sun.security.ssl.Authenticator$MAC
            invokeinterface sun.security.ssl.Authenticator$MAC.macAlg:()Lsun/security/ssl/CipherSuite$MacAlg;
            getfield sun.security.ssl.CipherSuite$MacAlg.size:I
            istore 3 /* macLen */
        start local 3 // int macLen
         1: .line 878
            iload 1 /* packetSize */
            iload 2 /* headerSize */
            isub
            iload 3 /* macLen */
            isub
            ireturn
        end local 3 // int macLen
        end local 2 // int headerSize
        end local 1 // int packetSize
        end local 0 // sun.security.ssl.SSLCipher$StreamReadCipherGenerator$StreamReadCipher this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lsun/security/ssl/SSLCipher$StreamReadCipherGenerator$StreamReadCipher;
            0    2     1  packetSize  I
            0    2     2  headerSize  I
            1    2     3      macLen  I
    MethodParameters:
            Name  Flags
      packetSize  
      headerSize  
}
SourceFile: "SSLCipher.java"
NestHost: sun.security.ssl.SSLCipher
InnerClasses:
  abstract MAC = sun.security.ssl.Authenticator$MAC of sun.security.ssl.Authenticator
  final MacAlg = sun.security.ssl.CipherSuite$MacAlg of sun.security.ssl.CipherSuite
  abstract SSLReadCipher = sun.security.ssl.SSLCipher$SSLReadCipher of sun.security.ssl.SSLCipher
  private final StreamReadCipherGenerator = sun.security.ssl.SSLCipher$StreamReadCipherGenerator of sun.security.ssl.SSLCipher
  final StreamReadCipher = sun.security.ssl.SSLCipher$StreamReadCipherGenerator$StreamReadCipher of sun.security.ssl.SSLCipher$StreamReadCipherGenerator