├── .gitignore ├── DIFF.md ├── DISA.md ├── DISA_DIFF.png ├── EXTDATA.md ├── LICENSE ├── README.md ├── cmac.py ├── db-extract.py ├── db-fast.sh ├── diff-extract.py ├── difi.py ├── disa-extract.py ├── disa-fat.png ├── inner-fat.png ├── key_engine.py ├── requirements.txt ├── savefilesystem.py ├── sd_decrypt.py └── secrets.py.template /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /DIFF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/DIFF.md -------------------------------------------------------------------------------- /DISA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/DISA.md -------------------------------------------------------------------------------- /DISA_DIFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/DISA_DIFF.png -------------------------------------------------------------------------------- /EXTDATA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/EXTDATA.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/README.md -------------------------------------------------------------------------------- /cmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/cmac.py -------------------------------------------------------------------------------- /db-extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/db-extract.py -------------------------------------------------------------------------------- /db-fast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/db-fast.sh -------------------------------------------------------------------------------- /diff-extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/diff-extract.py -------------------------------------------------------------------------------- /difi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/difi.py -------------------------------------------------------------------------------- /disa-extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/disa-extract.py -------------------------------------------------------------------------------- /disa-fat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/disa-fat.png -------------------------------------------------------------------------------- /inner-fat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/inner-fat.png -------------------------------------------------------------------------------- /key_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/key_engine.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome>=3.19.1 2 | -------------------------------------------------------------------------------- /savefilesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/savefilesystem.py -------------------------------------------------------------------------------- /sd_decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/sd_decrypt.py -------------------------------------------------------------------------------- /secrets.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwylele/3ds-save-tool/HEAD/secrets.py.template --------------------------------------------------------------------------------