├── HuaweiUpdateLibrary.sln ├── HuaweiUpdateLibrary ├── Algorithms │ └── UpdateCrc16.cs ├── Core │ ├── EntryType.cs │ ├── FileHeader.cs │ ├── UpdateEntry.cs │ ├── UpdateFile.cs │ └── Utilities.cs ├── HuaweiUpdateLibrary.csproj ├── Properties │ └── AssemblyInfo.cs ├── Streams │ ├── EventStream.cs │ └── PartialStream.cs ├── gpl-3.0.txt └── packages.config ├── README.md └── Test ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── Test.csproj └── app.config /HuaweiUpdateLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/HuaweiUpdateLibrary.sln -------------------------------------------------------------------------------- /HuaweiUpdateLibrary/Algorithms/UpdateCrc16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/HuaweiUpdateLibrary/Algorithms/UpdateCrc16.cs -------------------------------------------------------------------------------- /HuaweiUpdateLibrary/Core/EntryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/HuaweiUpdateLibrary/Core/EntryType.cs -------------------------------------------------------------------------------- /HuaweiUpdateLibrary/Core/FileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/HuaweiUpdateLibrary/Core/FileHeader.cs -------------------------------------------------------------------------------- /HuaweiUpdateLibrary/Core/UpdateEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/HuaweiUpdateLibrary/Core/UpdateEntry.cs -------------------------------------------------------------------------------- /HuaweiUpdateLibrary/Core/UpdateFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/HuaweiUpdateLibrary/Core/UpdateFile.cs -------------------------------------------------------------------------------- /HuaweiUpdateLibrary/Core/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/HuaweiUpdateLibrary/Core/Utilities.cs -------------------------------------------------------------------------------- /HuaweiUpdateLibrary/HuaweiUpdateLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/HuaweiUpdateLibrary/HuaweiUpdateLibrary.csproj -------------------------------------------------------------------------------- /HuaweiUpdateLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/HuaweiUpdateLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HuaweiUpdateLibrary/Streams/EventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/HuaweiUpdateLibrary/Streams/EventStream.cs -------------------------------------------------------------------------------- /HuaweiUpdateLibrary/Streams/PartialStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/HuaweiUpdateLibrary/Streams/PartialStream.cs -------------------------------------------------------------------------------- /HuaweiUpdateLibrary/gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/HuaweiUpdateLibrary/gpl-3.0.txt -------------------------------------------------------------------------------- /HuaweiUpdateLibrary/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/HuaweiUpdateLibrary/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/README.md -------------------------------------------------------------------------------- /Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/Test/Program.cs -------------------------------------------------------------------------------- /Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Test/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/Test/Test.csproj -------------------------------------------------------------------------------- /Test/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worstenbrood/HuaweiUpdateLibrary/HEAD/Test/app.config --------------------------------------------------------------------------------