public abstract class org.bouncycastle.crypto.StreamBlockCipher implements org.bouncycastle.crypto.BlockCipher, org.bouncycastle.crypto.StreamCipher
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.bouncycastle.crypto.StreamBlockCipher
  super_class: java.lang.Object
{
  private final org.bouncycastle.crypto.BlockCipher cipher;
    descriptor: Lorg/bouncycastle/crypto/BlockCipher;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  protected void <init>(org.bouncycastle.crypto.BlockCipher);
    descriptor: (Lorg/bouncycastle/crypto/BlockCipher;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.StreamBlockCipher this
        start local 1 // org.bouncycastle.crypto.BlockCipher cipher
         0: .line 12
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 14
            aload 0 /* this */
            aload 1 /* cipher */
            putfield org.bouncycastle.crypto.StreamBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
         2: .line 15
            return
        end local 1 // org.bouncycastle.crypto.BlockCipher cipher
        end local 0 // org.bouncycastle.crypto.StreamBlockCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/bouncycastle/crypto/StreamBlockCipher;
            0    3     1  cipher  Lorg/bouncycastle/crypto/BlockCipher;
    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.StreamBlockCipher this
         0: .line 24
            aload 0 /* this */
            getfield org.bouncycastle.crypto.StreamBlockCipher.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            areturn
        end local 0 // org.bouncycastle.crypto.StreamBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/StreamBlockCipher;

  public final byte returnByte(byte);
    descriptor: (B)B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.StreamBlockCipher this
        start local 1 // byte in
         0: .line 29
            aload 0 /* this */
            iload 1 /* in */
            invokevirtual org.bouncycastle.crypto.StreamBlockCipher.calculateByte:(B)B
            ireturn
        end local 1 // byte in
        end local 0 // org.bouncycastle.crypto.StreamBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/StreamBlockCipher;
            0    1     1    in  B
    MethodParameters:
      Name  Flags
      in    

  public int processBytes(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=9, args_size=6
        start local 0 // org.bouncycastle.crypto.StreamBlockCipher 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 35
            iload 2 /* inOff */
            iload 3 /* len */
            iadd
            aload 1 /* in */
            arraylength
            if_icmple 2
         1: .line 37
            new org.bouncycastle.crypto.DataLengthException
            dup
            ldc "input buffer too small"
            invokespecial org.bouncycastle.crypto.DataLengthException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 39
      StackMap locals:
      StackMap stack:
            iload 5 /* outOff */
            iload 3 /* len */
            iadd
            aload 4 /* out */
            arraylength
            if_icmple 4
         3: .line 41
            new org.bouncycastle.crypto.OutputLengthException
            dup
            ldc "output buffer too short"
            invokespecial org.bouncycastle.crypto.OutputLengthException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 44
      StackMap locals:
      StackMap stack:
            iload 2 /* inOff */
            istore 6 /* inStart */
        start local 6 // int inStart
         5: .line 45
            iload 2 /* inOff */
            iload 3 /* len */
            iadd
            istore 7 /* inEnd */
        start local 7 // int inEnd
         6: .line 46
            iload 5 /* outOff */
            istore 8 /* outStart */
        start local 8 // int outStart
         7: .line 48
            goto 9
         8: .line 50
      StackMap locals: int int int
      StackMap stack:
            aload 4 /* out */
            iload 8 /* outStart */
            iinc 8 /* outStart */ 1
            aload 0 /* this */
            aload 1 /* in */
            iload 6 /* inStart */
            iinc 6 /* inStart */ 1
            baload
            invokevirtual org.bouncycastle.crypto.StreamBlockCipher.calculateByte:(B)B
            bastore
         9: .line 48
      StackMap locals:
      StackMap stack:
            iload 6 /* inStart */
            iload 7 /* inEnd */
            if_icmplt 8
        10: .line 53
            iload 3 /* len */
            ireturn
        end local 8 // int outStart
        end local 7 // int inEnd
        end local 6 // int inStart
        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.StreamBlockCipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lorg/bouncycastle/crypto/StreamBlockCipher;
            0   11     1        in  [B
            0   11     2     inOff  I
            0   11     3       len  I
            0   11     4       out  [B
            0   11     5    outOff  I
            5   11     6   inStart  I
            6   11     7     inEnd  I
            7   11     8  outStart  I
    Exceptions:
      throws org.bouncycastle.crypto.DataLengthException
    MethodParameters:
        Name  Flags
      in      
      inOff   
      len     
      out     
      outOff  

  protected abstract byte calculateByte(byte);
    descriptor: (B)B
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      b     
}
SourceFile: "StreamBlockCipher.java"