├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── appdecrypt │ ├── ConsoleIO.swift │ ├── dump.swift │ └── main.swift └── global.xml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradiseduo/appdecrypt/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradiseduo/appdecrypt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradiseduo/appdecrypt/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradiseduo/appdecrypt/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradiseduo/appdecrypt/HEAD/README.md -------------------------------------------------------------------------------- /Sources/appdecrypt/ConsoleIO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradiseduo/appdecrypt/HEAD/Sources/appdecrypt/ConsoleIO.swift -------------------------------------------------------------------------------- /Sources/appdecrypt/dump.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradiseduo/appdecrypt/HEAD/Sources/appdecrypt/dump.swift -------------------------------------------------------------------------------- /Sources/appdecrypt/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradiseduo/appdecrypt/HEAD/Sources/appdecrypt/main.swift -------------------------------------------------------------------------------- /global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradiseduo/appdecrypt/HEAD/global.xml --------------------------------------------------------------------------------