Get this ciphers's maximum output block size.
@override int get outputBlockSize { var baseBlockSize = _engine.outputBlockSize; if (_forEncryption) { return baseBlockSize; } else { return baseBlockSize - 1 - (2 * defHash.length); } }