mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
16 lines
464 B
C#
16 lines
464 B
C#
|
using System.IO;
|
||
|
using System.Threading.Tasks;
|
||
|
using Octodiff.Core;
|
||
|
using Octodiff.Diagnostics;
|
||
|
|
||
|
namespace Wabbajack.Installer.Utilities
|
||
|
{
|
||
|
public class BinaryPatching
|
||
|
{
|
||
|
public static async ValueTask ApplyPatch(Stream input, Stream deltaStream, Stream output)
|
||
|
{
|
||
|
var deltaApplier = new DeltaApplier();
|
||
|
deltaApplier.Apply(input, new BinaryDeltaReader(deltaStream, new NullProgressReporter()), output);
|
||
|
}
|
||
|
}
|
||
|
}
|