Bracket both backups before either write so partial states are recoverable.
(string firstPath, string secondPath)
| 822 | |
| 823 | // Bracket both backups before either write so partial states are recoverable. |
| 824 | void BackupBoth(string firstPath, string secondPath) |
| 825 | { |
| 826 | Backup(firstPath); |
| 827 | Backup(secondPath); |
| 828 | } |
| 829 | |
| 830 | void ReEncryptAndWrite(string cachePath, byte[] patchedPayload, byte[] iv) |
| 831 | { |
nothing calls this directly
no outgoing calls
no test coverage detected