├── .gitignore ├── Dockerfile ├── LICENSE.txt ├── README.md ├── pyproject.toml └── src └── iphone_backup_decrypt ├── __init__.py ├── google_iphone_dataprotection.py ├── iphone_backup.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsharkey13/iphone_backup_decrypt/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsharkey13/iphone_backup_decrypt/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsharkey13/iphone_backup_decrypt/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsharkey13/iphone_backup_decrypt/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsharkey13/iphone_backup_decrypt/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/iphone_backup_decrypt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsharkey13/iphone_backup_decrypt/HEAD/src/iphone_backup_decrypt/__init__.py -------------------------------------------------------------------------------- /src/iphone_backup_decrypt/google_iphone_dataprotection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsharkey13/iphone_backup_decrypt/HEAD/src/iphone_backup_decrypt/google_iphone_dataprotection.py -------------------------------------------------------------------------------- /src/iphone_backup_decrypt/iphone_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsharkey13/iphone_backup_decrypt/HEAD/src/iphone_backup_decrypt/iphone_backup.py -------------------------------------------------------------------------------- /src/iphone_backup_decrypt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsharkey13/iphone_backup_decrypt/HEAD/src/iphone_backup_decrypt/utils.py --------------------------------------------------------------------------------