├── .github └── FUNDING.yml ├── .gitignore ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── CsharpJson ├── JsonArray.cs ├── JsonDocument.cs ├── JsonObject.cs └── JsonValue.cs ├── Github.cs ├── LICENSE ├── Properties └── PublishProfiles │ └── win-x64.pubxml ├── README.md ├── SignManager.csproj ├── SignManager.sln ├── Windows ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── WindowDownload.xaml ├── WindowDownload.xaml.cs ├── WindowDownloadProtocol.xaml ├── WindowDownloadProtocol.xaml.cs ├── WindowInput.xaml ├── WindowInput.xaml.cs ├── WindowKFCFactory.xaml ├── WindowKFCFactory.xaml.cs ├── WindowUnidbgFetchQSign.xaml └── WindowUnidbgFetchQSign.xaml.cs ├── icon.ico ├── icon.png └── window_icon.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.vs 2 | /bin 3 | /obj 4 | *.user 5 | -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/AssemblyInfo.cs -------------------------------------------------------------------------------- /CsharpJson/JsonArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/CsharpJson/JsonArray.cs -------------------------------------------------------------------------------- /CsharpJson/JsonDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/CsharpJson/JsonDocument.cs -------------------------------------------------------------------------------- /CsharpJson/JsonObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/CsharpJson/JsonObject.cs -------------------------------------------------------------------------------- /CsharpJson/JsonValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/CsharpJson/JsonValue.cs -------------------------------------------------------------------------------- /Github.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/Github.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/LICENSE -------------------------------------------------------------------------------- /Properties/PublishProfiles/win-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/Properties/PublishProfiles/win-x64.pubxml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/README.md -------------------------------------------------------------------------------- /SignManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/SignManager.csproj -------------------------------------------------------------------------------- /SignManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/SignManager.sln -------------------------------------------------------------------------------- /Windows/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/Windows/MainWindow.xaml -------------------------------------------------------------------------------- /Windows/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/Windows/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Windows/WindowDownload.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/Windows/WindowDownload.xaml -------------------------------------------------------------------------------- /Windows/WindowDownload.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/Windows/WindowDownload.xaml.cs -------------------------------------------------------------------------------- /Windows/WindowDownloadProtocol.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/Windows/WindowDownloadProtocol.xaml -------------------------------------------------------------------------------- /Windows/WindowDownloadProtocol.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/Windows/WindowDownloadProtocol.xaml.cs -------------------------------------------------------------------------------- /Windows/WindowInput.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/Windows/WindowInput.xaml -------------------------------------------------------------------------------- /Windows/WindowInput.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/Windows/WindowInput.xaml.cs -------------------------------------------------------------------------------- /Windows/WindowKFCFactory.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/Windows/WindowKFCFactory.xaml -------------------------------------------------------------------------------- /Windows/WindowKFCFactory.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/Windows/WindowKFCFactory.xaml.cs -------------------------------------------------------------------------------- /Windows/WindowUnidbgFetchQSign.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/Windows/WindowUnidbgFetchQSign.xaml -------------------------------------------------------------------------------- /Windows/WindowUnidbgFetchQSign.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/Windows/WindowUnidbgFetchQSign.xaml.cs -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/icon.ico -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/icon.png -------------------------------------------------------------------------------- /window_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrXiaoM/SignManager/HEAD/window_icon.png --------------------------------------------------------------------------------