Beispiel #1
0
  public int processBlock(byte[] in, int inOff, byte[] out, int outOff)
      throws DataLengthException, IllegalStateException {
    this.processBytes(in, inOff, cfbEngine.getBlockSize(), out, outOff);

    return cfbEngine.getBlockSize();
  }
Beispiel #2
0
 public int getBlockSize() {
   return cfbEngine.getBlockSize();
 }