/// <summary> /// Initialises an rsync calculation stream using the specified stream as the /// underlying stream and the specified rsync window size (number of bytes) /// </summary> public RSyncChecksumStream(Stream stream, int window) { _stream = stream; _calc = new RSyncChecksumCalculator(window); }