public class org.bouncycastle.crypto.BufferedBlockCipher
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.crypto.BufferedBlockCipher
  super_class: java.lang.Object
{
  protected byte[] buf;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected int bufOff;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected boolean forEncryption;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected org.bouncycastle.crypto.BlockCipher cipher;
    descriptor: Lorg/bouncycastle/crypto/BlockCipher;
    flags: (0x0004) ACC_PROTECTED

  protected boolean partialBlockOkay;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected boolean pgpCFB;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
         0: .line 26
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 28
            return
        end local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bouncycastle/crypto/BufferedBlockCipher;

  public void <init>(org.bouncycastle.crypto.BlockCipher);
    descriptor: (Lorg/bouncycastle/crypto/BlockCipher;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
        start local 1 // org.bouncycastle.crypto.BlockCipher cipher
         0: .line 35
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 0 /* this */
            aload 1 /* cipher */
            putfield org.bouncycastle.crypto.BufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
         2: .line 40
            aload 0 /* this */
            aload 1 /* cipher */
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            newarray 8
            putfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
         3: .line 41
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
         4: .line 46
            aload 1 /* cipher */
            invokeinterface org.bouncycastle.crypto.BlockCipher.getAlgorithmName:()Ljava/lang/String;
            astore 2 /* name */
        start local 2 // java.lang.String name
         5: .line 47
            aload 2 /* name */
            bipush 47
            invokevirtual java.lang.String.indexOf:(I)I
            iconst_1
            iadd
            istore 3 /* idx */
        start local 3 // int idx
         6: .line 49
            aload 0 /* this */
            iload 3 /* idx */
            ifle 7
            aload 2 /* name */
            ldc "PGP"
            iload 3 /* idx */
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;I)Z
            ifeq 7
            iconst_1
            goto 8
      StackMap locals: org.bouncycastle.crypto.BufferedBlockCipher org.bouncycastle.crypto.BlockCipher java.lang.String int
      StackMap stack: org.bouncycastle.crypto.BufferedBlockCipher
         7: iconst_0
      StackMap locals: org.bouncycastle.crypto.BufferedBlockCipher org.bouncycastle.crypto.BlockCipher java.lang.String int
      StackMap stack: org.bouncycastle.crypto.BufferedBlockCipher int
         8: putfield org.bouncycastle.crypto.BufferedBlockCipher.pgpCFB:Z
         9: .line 51
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.pgpCFB:Z
            ifeq 12
        10: .line 53
            aload 0 /* this */
            iconst_1
            putfield org.bouncycastle.crypto.BufferedBlockCipher.partialBlockOkay:Z
        11: .line 54
            goto 16
        12: .line 57
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* idx */
            ifle 14
            aload 2 /* name */
            ldc "CFB"
            iload 3 /* idx */
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;I)Z
            ifne 13
            aload 2 /* name */
            ldc "OFB"
            iload 3 /* idx */
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;I)Z
            ifne 13
            aload 2 /* name */
            ldc "OpenPGP"
            iload 3 /* idx */
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;I)Z
            ifne 13
            aload 2 /* name */
            ldc "SIC"
            iload 3 /* idx */
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;I)Z
            ifne 13
            aload 2 /* name */
            ldc "GCTR"
            iload 3 /* idx */
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;I)Z
            ifeq 14
      StackMap locals:
      StackMap stack: org.bouncycastle.crypto.BufferedBlockCipher
        13: iconst_1
            goto 15
      StackMap locals:
      StackMap stack: org.bouncycastle.crypto.BufferedBlockCipher
        14: iconst_0
      StackMap locals: org.bouncycastle.crypto.BufferedBlockCipher org.bouncycastle.crypto.BlockCipher java.lang.String int
      StackMap stack: org.bouncycastle.crypto.BufferedBlockCipher int
        15: putfield org.bouncycastle.crypto.BufferedBlockCipher.partialBlockOkay:Z
        16: .line 59
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int idx
        end local 2 // java.lang.String name
        end local 1 // org.bouncycastle.crypto.BlockCipher cipher
        end local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Lorg/bouncycastle/crypto/BufferedBlockCipher;
            0   17     1  cipher  Lorg/bouncycastle/crypto/BlockCipher;
            5   17     2    name  Ljava/lang/String;
            6   17     3     idx  I
    MethodParameters:
        Name  Flags
      cipher  

  public org.bouncycastle.crypto.BlockCipher getUnderlyingCipher();
    descriptor: ()Lorg/bouncycastle/crypto/BlockCipher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
         0: .line 68
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            areturn
        end local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/BufferedBlockCipher;

  public void init(boolean, org.bouncycastle.crypto.CipherParameters);
    descriptor: (ZLorg/bouncycastle/crypto/CipherParameters;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
        start local 1 // boolean forEncryption
        start local 2 // org.bouncycastle.crypto.CipherParameters params
         0: .line 85
            aload 0 /* this */
            iload 1 /* forEncryption */
            putfield org.bouncycastle.crypto.BufferedBlockCipher.forEncryption:Z
         1: .line 87
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.BufferedBlockCipher.reset:()V
         2: .line 89
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            iload 1 /* forEncryption */
            aload 2 /* params */
            invokeinterface org.bouncycastle.crypto.BlockCipher.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
         3: .line 90
            return
        end local 2 // org.bouncycastle.crypto.CipherParameters params
        end local 1 // boolean forEncryption
        end local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lorg/bouncycastle/crypto/BufferedBlockCipher;
            0    4     1  forEncryption  Z
            0    4     2         params  Lorg/bouncycastle/crypto/CipherParameters;
    Exceptions:
      throws java.lang.IllegalArgumentException
    MethodParameters:
               Name  Flags
      forEncryption  
      params         

  public int getBlockSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
         0: .line 99
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            ireturn
        end local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/BufferedBlockCipher;

  public int getUpdateOutputSize(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
        start local 1 // int len
         0: .line 113
            iload 1 /* len */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
            iadd
            istore 2 /* total */
        start local 2 // int total
         1: .line 116
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.pgpCFB:Z
            ifeq 4
         2: .line 118
            iload 2 /* total */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            arraylength
            irem
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            iconst_2
            iadd
            isub
            istore 3 /* leftOver */
        start local 3 // int leftOver
         3: .line 119
            goto 5
        end local 3 // int leftOver
         4: .line 122
      StackMap locals: int
      StackMap stack:
            iload 2 /* total */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            arraylength
            irem
            istore 3 /* leftOver */
        start local 3 // int leftOver
         5: .line 125
      StackMap locals: 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.BufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/bouncycastle/crypto/BufferedBlockCipher;
            0    6     1       len  I
            1    6     2     total  I
            3    4     3  leftOver  I
            5    6     3  leftOver  I
    MethodParameters:
      Name  Flags
      len   

  public int getOutputSize(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
        start local 1 // int length
         0: .line 140
            iload 1 /* length */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
            iadd
            ireturn
        end local 1 // int length
        end local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/bouncycastle/crypto/BufferedBlockCipher;
            0    1     1  length  I
    MethodParameters:
        Name  Flags
      length  

  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.BufferedBlockCipher this
        start local 1 // byte in
        start local 2 // byte[] out
        start local 3 // int outOff
         0: .line 159
            iconst_0
            istore 4 /* resultLen */
        start local 4 // int resultLen
         1: .line 161
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            aload 0 /* this */
            dup
            getfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
            dup_x1
            iconst_1
            iadd
            putfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
            iload 1 /* in */
            bastore
         2: .line 163
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            arraylength
            if_icmpne 5
         3: .line 165
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            iconst_0
            aload 2 /* out */
            iload 3 /* outOff */
            invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
            istore 4 /* resultLen */
         4: .line 166
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
         5: .line 169
      StackMap locals: int
      StackMap stack:
            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.BufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/bouncycastle/crypto/BufferedBlockCipher;
            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.BufferedBlockCipher 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 192
            iload 3 /* len */
            ifge 2
         1: .line 194
            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 197
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.BufferedBlockCipher.getBlockSize:()I
            istore 6 /* blockSize */
        start local 6 // int blockSize
         3: .line 198
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual org.bouncycastle.crypto.BufferedBlockCipher.getUpdateOutputSize:(I)I
            istore 7 /* length */
        start local 7 // int length
         4: .line 200
            iload 7 /* length */
            ifle 7
         5: .line 202
            iload 5 /* outOff */
            iload 7 /* length */
            iadd
            aload 4 /* out */
            arraylength
            if_icmple 7
         6: .line 204
            new org.bouncycastle.crypto.DataLengthException
            dup
            ldc "output buffer too short"
            invokespecial org.bouncycastle.crypto.DataLengthException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 208
      StackMap locals: int int
      StackMap stack:
            iconst_0
            istore 8 /* resultLen */
        start local 8 // int resultLen
         8: .line 209
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            arraylength
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
            isub
            istore 9 /* gapLen */
        start local 9 // int gapLen
         9: .line 211
            iload 3 /* len */
            iload 9 /* gapLen */
            if_icmple 20
        10: .line 213
            aload 1 /* in */
            iload 2 /* inOff */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
            iload 9 /* gapLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        11: .line 215
            iload 8 /* resultLen */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.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 217
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
        13: .line 218
            iload 3 /* len */
            iload 9 /* gapLen */
            isub
            istore 3 /* len */
        14: .line 219
            iload 2 /* inOff */
            iload 9 /* gapLen */
            iadd
            istore 2 /* inOff */
        15: .line 221
            goto 19
        16: .line 223
      StackMap locals: int int
      StackMap stack:
            iload 8 /* resultLen */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.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 225
            iload 3 /* len */
            iload 6 /* blockSize */
            isub
            istore 3 /* len */
        18: .line 226
            iload 2 /* inOff */
            iload 6 /* blockSize */
            iadd
            istore 2 /* inOff */
        19: .line 221
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            arraylength
            if_icmpgt 16
        20: .line 230
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            iload 2 /* inOff */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        21: .line 232
            aload 0 /* this */
            dup
            getfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
            iload 3 /* len */
            iadd
            putfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
        22: .line 234
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            arraylength
            if_icmpne 25
        23: .line 236
            iload 8 /* resultLen */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            iconst_0
            aload 4 /* out */
            iload 5 /* outOff */
            iload 8 /* resultLen */
            iadd
            invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
            iadd
            istore 8 /* resultLen */
        24: .line 237
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
        25: .line 240
      StackMap locals:
      StackMap stack:
            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.BufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   26     0       this  Lorg/bouncycastle/crypto/BufferedBlockCipher;
            0   26     1         in  [B
            0   26     2      inOff  I
            0   26     3        len  I
            0   26     4        out  [B
            0   26     5     outOff  I
            3   26     6  blockSize  I
            4   26     7     length  I
            8   26     8  resultLen  I
            9   26     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=5, locals=6, args_size=3
        start local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
        start local 1 // byte[] out
        start local 2 // int outOff
         0: .line 264
            iconst_0
            istore 3 /* resultLen */
        start local 3 // int resultLen
         1: .line 266
            iload 2 /* outOff */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
            iadd
            aload 1 /* out */
            arraylength
            if_icmple 3
         2: .line 268
            new org.bouncycastle.crypto.DataLengthException
            dup
            ldc "output buffer too short for doFinal()"
            invokespecial org.bouncycastle.crypto.DataLengthException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 271
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
            ifeq 10
         4: .line 273
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.partialBlockOkay:Z
            ifne 6
         5: .line 275
            new org.bouncycastle.crypto.DataLengthException
            dup
            ldc "data not block size aligned"
            invokespecial org.bouncycastle.crypto.DataLengthException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 278
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            iconst_0
            invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
            pop
         7: .line 279
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
            istore 3 /* resultLen */
         8: .line 280
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
         9: .line 281
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            iconst_0
            aload 1 /* out */
            iload 2 /* outOff */
            iload 3 /* resultLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 284
      StackMap locals:
      StackMap stack:
            iload 3 /* resultLen */
            istore 5
        11: .line 288
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.BufferedBlockCipher.reset:()V
        12: .line 284
            iload 5
            ireturn
        end local 3 // int resultLen
        13: .line 287
      StackMap locals: org.bouncycastle.crypto.BufferedBlockCipher byte[] int
      StackMap stack: java.lang.Throwable
            astore 4
        14: .line 288
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.BufferedBlockCipher.reset:()V
        15: .line 289
            aload 4
            athrow
        end local 2 // int outOff
        end local 1 // byte[] out
        end local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   16     0       this  Lorg/bouncycastle/crypto/BufferedBlockCipher;
            0   16     1        out  [B
            0   16     2     outOff  I
            1   13     3  resultLen  I
      Exception table:
        from    to  target  type
           0    11      13  any
    Exceptions:
      throws org.bouncycastle.crypto.DataLengthException, java.lang.IllegalStateException, org.bouncycastle.crypto.InvalidCipherTextException
    MethodParameters:
        Name  Flags
      out     
      outOff  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
         0: .line 301
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 303
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            iload 1 /* i */
            iconst_0
            bastore
         3: .line 301
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 1 /* i */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.buf:[B
            arraylength
            if_icmplt 2
        end local 1 // int i
         5: .line 306
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.BufferedBlockCipher.bufOff:I
         6: .line 311
            aload 0 /* this */
            getfield org.bouncycastle.crypto.BufferedBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            invokeinterface org.bouncycastle.crypto.BlockCipher.reset:()V
         7: .line 312
            return
        end local 0 // org.bouncycastle.crypto.BufferedBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/bouncycastle/crypto/BufferedBlockCipher;
            1    5     1     i  I
}
SourceFile: "BufferedBlockCipher.java"