├── .gitattributes ├── .gitignore ├── .gitmodules ├── App.config ├── CSharpObjectForLogin.lua ├── LICENSE ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── ROMDesCipher.cs ├── ROMEncryption.csproj ├── ROMUnityXor.cs ├── ROMUnlua.cs └── rom.lua /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzuth/ROMEncryption/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzuth/ROMEncryption/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzuth/ROMEncryption/HEAD/.gitmodules -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzuth/ROMEncryption/HEAD/App.config -------------------------------------------------------------------------------- /CSharpObjectForLogin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzuth/ROMEncryption/HEAD/CSharpObjectForLogin.lua -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzuth/ROMEncryption/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzuth/ROMEncryption/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzuth/ROMEncryption/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzuth/ROMEncryption/HEAD/README.md -------------------------------------------------------------------------------- /ROMDesCipher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzuth/ROMEncryption/HEAD/ROMDesCipher.cs -------------------------------------------------------------------------------- /ROMEncryption.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzuth/ROMEncryption/HEAD/ROMEncryption.csproj -------------------------------------------------------------------------------- /ROMUnityXor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzuth/ROMEncryption/HEAD/ROMUnityXor.cs -------------------------------------------------------------------------------- /ROMUnlua.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzuth/ROMEncryption/HEAD/ROMUnlua.cs -------------------------------------------------------------------------------- /rom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shalzuth/ROMEncryption/HEAD/rom.lua --------------------------------------------------------------------------------