You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Working on encrypted data from multiple locations works the same as working on unencrypted data from multiple locations. If there is a synchronization conflict, it is handled similarly to how most cloud storage services deal with conflicts.
4
+
Working on encrypted data from multiple locations works the same as working on unencrypted data from multiple locations.
5
+
If there is a synchronization conflict, it is handled similarly to how most cloud storage services deal with conflicts.
5
6
6
-
When a sync conflict occurs, cloud storage services typically create a conflict file by appending a suffix (e.g., ``(1)``) to indicate that there was a conflict. You then need to determine which file to keep.
7
+
When a sync conflict occurs, cloud storage services typically create a conflict file by appending a suffix (e.g., ``(Created by Alice)``) to indicate that there was a conflict.
8
+
You then need to determine which file to keep.
9
+
10
+
Cryptomator handles encrypted files in the same way.
11
+
It detects synchronization conflicts and appends the suffix from your cloud provider to the decrypted filename.
12
+
If the filename with the conflict suffix is too long, Cryptomator shortens the overall filename.
13
+
And if the decrypted filename already exists, the conflicted file has a simple ``(X)`` suffix, where X is an integer.
14
+
15
+
|cloud provider suffix | original decrypted name | new decrypted name | comment |
|(Created by Alice) | businessPitch.odp | businessPitch (Created by Alice).odp | regular case |
18
+
|(Created by Alice) | businessPitch.odp | businessPitch (1).odp | preferred name already taken |
19
+
|(Created by Alice on 2024-01-31) | businessPitchForTheGreatIdeaIHadLastNight.odp | businessPitchForTheGreatIdeaI (Created by Alice on 2024-01.odp | maximum cleartext of the vault is set to 62 |
7
20
8
-
Cryptomator handles encrypted files in the same way. It detects synchronization conflicts and displays the conflicted file with a ``(X)`` suffix, where X is an integer.
9
21
10
22
.. note::
11
23
12
-
Sync conflicts can happen in cloud storages for several reasons. In such cases, it is up to you to decide what to do with the conflicted files. It is recommended to manually check both files and determine which one to keep. If you conclude that both files are identical, you can delete one copy. The organization of your files is entirely in your hands.
24
+
Sync conflicts can happen in cloud storages for several reasons.
25
+
In such cases, it is up to you to decide what to do with the conflicted files.
26
+
It is recommended to manually check both files and determine which one to keep
27
+
If you conclude that both files are identical, you can delete one copy.
28
+
The organization of your files is entirely in your hands.
13
29
14
30
Handling Sync Conflicts
15
31
-----------------------
16
32
17
-
1. When a sync conflict is detected, Cryptomator will display the conflicted file with a ``(X)`` suffix, where X is an increasing integer.
33
+
1. When a sync conflict is detected, Cryptomator will display the conflicted file with a suffix, see above table
18
34
2. Manually review both the original and conflicted files.
19
35
3. Decide which file to keep based on your review.
20
36
4. If both files are identical, you can delete one of the copies to resolve the conflict.
@@ -24,8 +40,11 @@ By following these steps, you can effectively manage synchronization conflicts a
24
40
Example
25
41
-------
26
42
27
-
Suppose you have a file named ``document.txt`` in your vault. In the encrypted vault, this file might be represented with an encrypted name such as ``5TyvCyF255sRtfrIv...83ucADQ==.c9r``.
43
+
Suppose you have a file named ``projectPlan.doc`` in your vault.
44
+
In the encrypted vault, this file might be represented with an encrypted name such as ``5TyvCyF255sRtfrIv...83ucADQ==.c9r``.
28
45
29
-
If a synchronization conflict occurs, it will happen on the encrypted filename. Cryptomator detects unexpected patterns in the encrypted filename and handles the conflict accordingly.
46
+
If a synchronization conflict occurs, it will happen on the encrypted filename.
47
+
Cryptomator detects unexpected patterns in the encrypted filename and handles the conflict accordingly.
30
48
31
-
For example, if there is a conflict with ``5TyvCyF255sRtfrIv...83ucADQ== (1).c9r``, Cryptomator will decrypt the decryptable part of the filename and rename the file to include a conflict suffix. The conflicted file might be renamed to something like ``FHTa55bH...sUfVDbEb0gTL9hZ8nho.c9r``, which corresponds to ``document (1).txt``.
49
+
For example, if there is a conflict with ``5TyvCyF255sRtfrIv...83ucADQ== (Created by Alice).c9r``, Cryptomator will decrypt the encrypted part of the filename and rename the file to include a conflict suffix.
50
+
The conflicted file might be renamed to something like ``FHTa55bH...sUfVDbEb0gTL9hZ8nho.c9r``, which corresponds to ``projectPlan (Created by Alice).doc``.
0 commit comments