Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jsharkey13/iphone_backup_decrypt
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.7.0
Choose a base ref
...
head repository: jsharkey13/iphone_backup_decrypt
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.7.1
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on May 18, 2024

  1. Fix incorrect attribute name in error message generation

    It was previously named just "size" before I renamed it for clarity,
    and my IDE didn't notice this one!
    jsharkey13 committed May 18, 2024
    Copy the full SHA
    1a2219b View commit details
  2. Release v0.7.1

    jsharkey13 committed May 18, 2024
    Copy the full SHA
    9ee894e View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 pyproject.toml
  2. +1 −1 src/iphone_backup_decrypt/utils.py
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "iphone_backup_decrypt"
version = "0.7.0"
version = "0.7.1"
authors = [
{ name="James Sharkey" },
]
2 changes: 1 addition & 1 deletion src/iphone_backup_decrypt/utils.py
Original file line number Diff line number Diff line change
@@ -137,7 +137,7 @@ def aes_decrypt_chunked(*, in_filename, file_plist, key, out_filepath):
dec_filehandle.write(dec_data)
# Check output size:
if dec_filehandle.tell() != file_plist.filesize:
print(f"WARN: decrypted {dec_filehandle.tell()} bytes of '{out_filepath}', expected {file_plist.size} bytes!")
print(f"WARN: decrypted {dec_filehandle.tell()} bytes of '{out_filepath}', expected {file_plist.filesize} bytes!")
# Close filehandles:
enc_filehandle.close()
dec_filehandle.close()