public class org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher extends org.bouncycastle.crypto.BufferedBlockCipher
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher
  super_class: org.bouncycastle.crypto.BufferedBlockCipher
{
  org.bouncycastle.crypto.paddings.BlockCipherPadding padding;
    descriptor: Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;
    flags: (0x0000) 

  public void <init>(org.bouncycastle.crypto.BlockCipher, org.bouncycastle.crypto.paddings.BlockCipherPadding);
    descriptor: (Lorg/bouncycastle/crypto/BlockCipher;Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
        start local 1 // org.bouncycastle.crypto.BlockCipher cipher
        start local 2 // org.bouncycastle.crypto.paddings.BlockCipherPadding padding
         0: .line 28
            aload 0 /* this */
            invokespecial org.bouncycastle.crypto.BufferedBlockCipher.<init>:()V
         1: .line 32
            aload 0 /* this */
            aload 1 /* cipher */
            putfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
         2: .line 33
            aload 0 /* this */
            aload 2 /* padding */
            putfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.padding:Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;
         3: .line 35
            aload 0 /* this */
            aload 1 /* cipher */
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            newarray 8
            putfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
         4: .line 36
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
         5: .line 37
            return
        end local 2 // org.bouncycastle.crypto.paddings.BlockCipherPadding padding
        end local 1 // org.bouncycastle.crypto.BlockCipher cipher
        end local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/bouncycastle/crypto/paddings/PaddedBufferedBlockCipher;
            0    6     1   cipher  Lorg/bouncycastle/crypto/BlockCipher;
            0    6     2  padding  Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;
    MethodParameters:
         Name  Flags
      cipher   
      padding  

  public void <init>(org.bouncycastle.crypto.BlockCipher);
    descriptor: (Lorg/bouncycastle/crypto/BlockCipher;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
        start local 1 // org.bouncycastle.crypto.BlockCipher cipher
         0: .line 47
            aload 0 /* this */
            aload 1 /* cipher */
            new org.bouncycastle.crypto.paddings.PKCS7Padding
            dup
            invokespecial org.bouncycastle.crypto.paddings.PKCS7Padding.<init>:()V
            invokespecial org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.<init>:(Lorg/bouncycastle/crypto/BlockCipher;Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;)V
         1: .line 48
            return
        end local 1 // org.bouncycastle.crypto.BlockCipher cipher
        end local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/bouncycastle/crypto/paddings/PaddedBufferedBlockCipher;
            0    2     1  cipher  Lorg/bouncycastle/crypto/BlockCipher;
    MethodParameters:
        Name  Flags
      cipher  

  public void init(boolean, org.bouncycastle.crypto.CipherParameters);
    descriptor: (ZLorg/bouncycastle/crypto/CipherParameters;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
        start local 1 // boolean forEncryption
        start local 2 // org.bouncycastle.crypto.CipherParameters params
         0: .line 64
            aload 0 /* this */
            iload 1 /* forEncryption */
            putfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.forEncryption:Z
         1: .line 66
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.reset:()V
         2: .line 68
            aload 2 /* params */
            instanceof org.bouncycastle.crypto.params.ParametersWithRandom
            ifeq 7
         3: .line 70
            aload 2 /* params */
            checkcast org.bouncycastle.crypto.params.ParametersWithRandom
            astore 3 /* p */
        start local 3 // org.bouncycastle.crypto.params.ParametersWithRandom p
         4: .line 72
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.padding:Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;
            aload 3 /* p */
            invokevirtual org.bouncycastle.crypto.params.ParametersWithRandom.getRandom:()Ljava/security/SecureRandom;
            invokeinterface org.bouncycastle.crypto.paddings.BlockCipherPadding.init:(Ljava/security/SecureRandom;)V
         5: .line 74
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            iload 1 /* forEncryption */
            aload 3 /* p */
            invokevirtual org.bouncycastle.crypto.params.ParametersWithRandom.getParameters:()Lorg/bouncycastle/crypto/CipherParameters;
            invokeinterface org.bouncycastle.crypto.BlockCipher.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
        end local 3 // org.bouncycastle.crypto.params.ParametersWithRandom p
         6: .line 75
            goto 9
         7: .line 78
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.padding:Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;
            aconst_null
            invokeinterface org.bouncycastle.crypto.paddings.BlockCipherPadding.init:(Ljava/security/SecureRandom;)V
         8: .line 80
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            iload 1 /* forEncryption */
            aload 2 /* params */
            invokeinterface org.bouncycastle.crypto.BlockCipher.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
         9: .line 82
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.bouncycastle.crypto.CipherParameters params
        end local 1 // boolean forEncryption
        end local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   10     0           this  Lorg/bouncycastle/crypto/paddings/PaddedBufferedBlockCipher;
            0   10     1  forEncryption  Z
            0   10     2         params  Lorg/bouncycastle/crypto/CipherParameters;
            4    6     3              p  Lorg/bouncycastle/crypto/params/ParametersWithRandom;
    Exceptions:
      throws java.lang.IllegalArgumentException
    MethodParameters:
               Name  Flags
      forEncryption  
      params         

  public int getOutputSize(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
        start local 1 // int len
         0: .line 95
            iload 1 /* len */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
            iadd
            istore 2 /* total */
        start local 2 // int total
         1: .line 96
            iload 2 /* total */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            arraylength
            irem
            istore 3 /* leftOver */
        start local 3 // int leftOver
         2: .line 98
            iload 3 /* leftOver */
            ifne 6
         3: .line 100
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.forEncryption:Z
            ifeq 5
         4: .line 102
            iload 2 /* total */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            arraylength
            iadd
            ireturn
         5: .line 105
      StackMap locals: int int
      StackMap stack:
            iload 2 /* total */
            ireturn
         6: .line 108
      StackMap locals:
      StackMap stack:
            iload 2 /* total */
            iload 3 /* leftOver */
            isub
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            arraylength
            iadd
            ireturn
        end local 3 // int leftOver
        end local 2 // int total
        end local 1 // int len
        end local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/bouncycastle/crypto/paddings/PaddedBufferedBlockCipher;
            0    7     1       len  I
            1    7     2     total  I
            2    7     3  leftOver  I
    MethodParameters:
      Name  Flags
      len   

  public int getUpdateOutputSize(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
        start local 1 // int len
         0: .line 122
            iload 1 /* len */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
            iadd
            istore 2 /* total */
        start local 2 // int total
         1: .line 123
            iload 2 /* total */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            arraylength
            irem
            istore 3 /* leftOver */
        start local 3 // int leftOver
         2: .line 125
            iload 3 /* leftOver */
            ifne 4
         3: .line 127
            iload 2 /* total */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            arraylength
            isub
            ireturn
         4: .line 130
      StackMap locals: int int
      StackMap stack:
            iload 2 /* total */
            iload 3 /* leftOver */
            isub
            ireturn
        end local 3 // int leftOver
        end local 2 // int total
        end local 1 // int len
        end local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/bouncycastle/crypto/paddings/PaddedBufferedBlockCipher;
            0    5     1       len  I
            1    5     2     total  I
            2    5     3  leftOver  I
    MethodParameters:
      Name  Flags
      len   

  public int processByte(byte, byte[], int);
    descriptor: (B[BI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
        start local 1 // byte in
        start local 2 // byte[] out
        start local 3 // int outOff
         0: .line 149
            iconst_0
            istore 4 /* resultLen */
        start local 4 // int resultLen
         1: .line 151
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            arraylength
            if_icmpne 4
         2: .line 153
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            iconst_0
            aload 2 /* out */
            iload 3 /* outOff */
            invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
            istore 4 /* resultLen */
         3: .line 154
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
         4: .line 157
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            aload 0 /* this */
            dup
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
            dup_x1
            iconst_1
            iadd
            putfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
            iload 1 /* in */
            bastore
         5: .line 159
            iload 4 /* resultLen */
            ireturn
        end local 4 // int resultLen
        end local 3 // int outOff
        end local 2 // byte[] out
        end local 1 // byte in
        end local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/bouncycastle/crypto/paddings/PaddedBufferedBlockCipher;
            0    6     1         in  B
            0    6     2        out  [B
            0    6     3     outOff  I
            1    6     4  resultLen  I
    Exceptions:
      throws org.bouncycastle.crypto.DataLengthException, java.lang.IllegalStateException
    MethodParameters:
        Name  Flags
      in      
      out     
      outOff  

  public int processBytes(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=10, args_size=6
        start local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // int len
        start local 4 // byte[] out
        start local 5 // int outOff
         0: .line 182
            iload 3 /* len */
            ifge 2
         1: .line 184
            new java.lang.IllegalArgumentException
            dup
            ldc "Can't have a negative input length!"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.getBlockSize:()I
            istore 6 /* blockSize */
        start local 6 // int blockSize
         3: .line 188
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.getUpdateOutputSize:(I)I
            istore 7 /* length */
        start local 7 // int length
         4: .line 190
            iload 7 /* length */
            ifle 7
         5: .line 192
            iload 5 /* outOff */
            iload 7 /* length */
            iadd
            aload 4 /* out */
            arraylength
            if_icmple 7
         6: .line 194
            new org.bouncycastle.crypto.DataLengthException
            dup
            ldc "output buffer too short"
            invokespecial org.bouncycastle.crypto.DataLengthException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 198
      StackMap locals: int int
      StackMap stack:
            iconst_0
            istore 8 /* resultLen */
        start local 8 // int resultLen
         8: .line 199
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            arraylength
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
            isub
            istore 9 /* gapLen */
        start local 9 // int gapLen
         9: .line 201
            iload 3 /* len */
            iload 9 /* gapLen */
            if_icmple 20
        10: .line 203
            aload 1 /* in */
            iload 2 /* inOff */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
            iload 9 /* gapLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        11: .line 205
            iload 8 /* resultLen */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            iconst_0
            aload 4 /* out */
            iload 5 /* outOff */
            invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
            iadd
            istore 8 /* resultLen */
        12: .line 207
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
        13: .line 208
            iload 3 /* len */
            iload 9 /* gapLen */
            isub
            istore 3 /* len */
        14: .line 209
            iload 2 /* inOff */
            iload 9 /* gapLen */
            iadd
            istore 2 /* inOff */
        15: .line 211
            goto 19
        16: .line 213
      StackMap locals: int int
      StackMap stack:
            iload 8 /* resultLen */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 1 /* in */
            iload 2 /* inOff */
            aload 4 /* out */
            iload 5 /* outOff */
            iload 8 /* resultLen */
            iadd
            invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
            iadd
            istore 8 /* resultLen */
        17: .line 215
            iload 3 /* len */
            iload 6 /* blockSize */
            isub
            istore 3 /* len */
        18: .line 216
            iload 2 /* inOff */
            iload 6 /* blockSize */
            iadd
            istore 2 /* inOff */
        19: .line 211
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            arraylength
            if_icmpgt 16
        20: .line 220
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            iload 2 /* inOff */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        21: .line 222
            aload 0 /* this */
            dup
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
            iload 3 /* len */
            iadd
            putfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
        22: .line 224
            iload 8 /* resultLen */
            ireturn
        end local 9 // int gapLen
        end local 8 // int resultLen
        end local 7 // int length
        end local 6 // int blockSize
        end local 5 // int outOff
        end local 4 // byte[] out
        end local 3 // int len
        end local 2 // int inOff
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   23     0       this  Lorg/bouncycastle/crypto/paddings/PaddedBufferedBlockCipher;
            0   23     1         in  [B
            0   23     2      inOff  I
            0   23     3        len  I
            0   23     4        out  [B
            0   23     5     outOff  I
            3   23     6  blockSize  I
            4   23     7     length  I
            8   23     8  resultLen  I
            9   23     9     gapLen  I
    Exceptions:
      throws org.bouncycastle.crypto.DataLengthException, java.lang.IllegalStateException
    MethodParameters:
        Name  Flags
      in      
      inOff   
      len     
      out     
      outOff  

  public int doFinal(byte[], int);
    descriptor: ([BI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=3
        start local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
        start local 1 // byte[] out
        start local 2 // int outOff
         0: .line 246
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            istore 3 /* blockSize */
        start local 3 // int blockSize
         1: .line 247
            iconst_0
            istore 4 /* resultLen */
        start local 4 // int resultLen
         2: .line 249
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.forEncryption:Z
            ifeq 13
         3: .line 251
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
            iload 3 /* blockSize */
            if_icmpne 9
         4: .line 253
            iload 2 /* outOff */
            iconst_2
            iload 3 /* blockSize */
            imul
            iadd
            aload 1 /* out */
            arraylength
            if_icmple 7
         5: .line 255
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.reset:()V
         6: .line 257
            new org.bouncycastle.crypto.DataLengthException
            dup
            ldc "output buffer too short"
            invokespecial org.bouncycastle.crypto.DataLengthException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 260
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            iconst_0
            aload 1 /* out */
            iload 2 /* outOff */
            invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
            istore 4 /* resultLen */
         8: .line 261
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
         9: .line 264
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.padding:Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
            invokeinterface org.bouncycastle.crypto.paddings.BlockCipherPadding.addPadding:([BI)I
            pop
        10: .line 266
            iload 4 /* resultLen */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            iconst_0
            aload 1 /* out */
            iload 2 /* outOff */
            iload 4 /* resultLen */
            iadd
            invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
            iadd
            istore 4 /* resultLen */
        11: .line 268
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.reset:()V
        12: .line 269
            goto 26
        13: .line 272
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
            iload 3 /* blockSize */
            if_icmpne 17
        14: .line 274
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            iconst_0
            invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
            istore 4 /* resultLen */
        15: .line 275
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.bufOff:I
        16: .line 276
            goto 19
        17: .line 279
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.reset:()V
        18: .line 281
            new org.bouncycastle.crypto.DataLengthException
            dup
            ldc "last block incomplete in decryption"
            invokespecial org.bouncycastle.crypto.DataLengthException.<init>:(Ljava/lang/String;)V
            athrow
        19: .line 286
      StackMap locals:
      StackMap stack:
            iload 4 /* resultLen */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.padding:Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            invokeinterface org.bouncycastle.crypto.paddings.BlockCipherPadding.padCount:([B)I
            isub
            istore 4 /* resultLen */
        20: .line 288
            aload 0 /* this */
            getfield org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.buf:[B
            iconst_0
            aload 1 /* out */
            iload 2 /* outOff */
            iload 4 /* resultLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        21: .line 289
            goto 25
        22: .line 291
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5
        23: .line 292
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.reset:()V
        24: .line 293
            aload 5
            athrow
        25: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher.reset:()V
        26: .line 296
      StackMap locals:
      StackMap stack:
            iload 4 /* resultLen */
            ireturn
        end local 4 // int resultLen
        end local 3 // int blockSize
        end local 2 // int outOff
        end local 1 // byte[] out
        end local 0 // org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   27     0       this  Lorg/bouncycastle/crypto/paddings/PaddedBufferedBlockCipher;
            0   27     1        out  [B
            0   27     2     outOff  I
            1   27     3  blockSize  I
            2   27     4  resultLen  I
      Exception table:
        from    to  target  type
          19    22      22  any
    Exceptions:
      throws org.bouncycastle.crypto.DataLengthException, java.lang.IllegalStateException, org.bouncycastle.crypto.InvalidCipherTextException
    MethodParameters:
        Name  Flags
      out     
      outOff  
}
SourceFile: "PaddedBufferedBlockCipher.java"