-
Notifications
You must be signed in to change notification settings - Fork 43
Consolidate encrypted file name docs and add video walkthrough #138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
282e865
8402029
3aaad72
25c1932
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,28 +42,52 @@ The actual directory structure of the vault on your hard drive/cloud will look l | |
|
|
||
| While this increases security, it also makes it impossible to see the original file names and directory structure without decrypting them first. | ||
| When you need to know the original name of a file (e.g. to restore an older version), you can use the `Decrypt File Name` feature to decrypt the file name. | ||
| Conversely, if you need to find the encrypted counterpart of a file inside the vault, use the `Locate Encrypted File` feature. | ||
|
|
||
| ## Decrypting File Names {#decrypting-file-names} | ||
| ## Locate Encrypted File {#locate-encrypted-file} | ||
|
|
||
| The Locate Encrypted File feature helps you find the encrypted version of a specific file from inside the vault. This comes in handy when vault files are versioned and you want to restore an older version of a file. As Cryptomator encrypts file names and obfuscates directory structures, first locate the encrypted file and then restore an older version of the encrypted file with a third-party app. | ||
|
|
||
| 1. Unlock the desired vault. | ||
| 2. Click on the `Locate Encrypted File` button. | ||
| 3. Select the file within the vault. | ||
|
|
||
| As an alternative for clicking the button, you can directly drag & drop a file onto the button. | ||
|
|
||
| A file manager window opens showing the encrypted folder and marking the encrypted file. | ||
|
|
||
| ## Decrypt File Names {#decrypting-file-names} | ||
|
|
||
| :::note | ||
| Due to technical reasons, given only an encrypted file Cryptomator can only decrypt its name. | ||
| It cannot compute its cleartext path. | ||
| Due to technical reasons, Cryptomator can only decrypt the name of an encrypted file if that file is provided by itself. | ||
| It cannot determine the file's cleartext path. | ||
| ::: | ||
|
|
||
| You can access this feature from the unlocked view of a vault in the Cryptomator main window. | ||
| On the bottom of the unlocked view, drop files on the `Decrypt File Name` zone or click on it. | ||
| A modal window with the encrypted-decrypted-mapping opens. | ||
| The Decrypt File Name feature helps you resolve encrypted file names back to their original cleartext names. To map encrypted files back to their cleartext names, just drag and drop the files onto the button in the unlocked vault section of the main app. | ||
|
|
||
| 1. Unlock the desired vault. | ||
| 2. Click on the `Decrypt File Name` zone at the bottom of the unlocked view. | ||
| 3. Select the encrypted file. | ||
|
|
||
| As an alternative for clicking the zone, you can directly drag & drop files onto it. | ||
|
|
||
| <Image src="/img/desktop/vault-detail-unlocked.png" alt="Vault detail view in the unlocked state" width="495" height="381" /> | ||
|
|
||
| The encrypted-decrypted-table has an action bar at the top with two buttons: | ||
| * Clipboard button to copy the whole table as a CSV into the system clipboard | ||
| * Trash button to clear the table | ||
| A modal window opens showing a two-column table with the encrypted names on the left and their decrypted, cleartext names on the right. | ||
|
|
||
| <Image src="/img/desktop/decrypt-file-names.png" alt="Decrypt file names window" width="311" height="385" /> | ||
|
|
||
| Encrypted file names and their corresponding decrypted, original name are shown inside a two column table, with the encrypted names on the right. | ||
| If you have not dropped any files, the table is empty. | ||
| You can click inside the empty table to select files with a file picker dialog. | ||
| The action bar at the top of the table provides two buttons: | ||
| * Clipboard button to copy the whole table as CSV into the system clipboard | ||
| * Trash button to clear the table | ||
|
|
||
| Select single cells and copy their content with the OS-specific keyboard shortcut. | ||
|
|
||
| ## Video Walkthrough | ||
|
|
||
| The following video demonstrates both features in action: first, **Locate Encrypted File** to find the encrypted counterpart of a file, and then **Decrypt File Name** to resolve an encrypted file name back to its original name. | ||
|
|
||
| Once the table has content, you can select single cells and copy their content with the OS specific keyboard copy shortcut. | ||
| <video controls autoplay loop muted style={{width: '100%', maxWidth: '1280px', height: 'auto'}}> | ||
| <source src="/vid/file-names.mov" type="video/mp4" /> | ||
| Your browser does not support the video tag. | ||
|
Comment on lines
+90
to
+92
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🌐 Web query:
💡 Result: The standard MIME type for a .mov file (QuickTime container) is video/quicktime. However, video/quicktime has very limited browser support in HTML5 Citations:
🏁 Script executed: #!/bin/bash
# Search for the video file reference in the docs directory
echo "=== Searching for video file references ==="
rg "file-names\.mov" docs/ 2>/dev/null || echo "No direct .mov references found"
# Check if assets directory exists and what's in vid directory
echo -e "\n=== Checking for vid directory ==="
find . -type d -name "vid" 2>/dev/null | head -20
# Search for any video file references in the repository
echo -e "\n=== Searching for any video file references ==="
rg "\.mov|\.mp4" docs/ --type md | head -20
# Check the exact file that was changed
echo -e "\n=== Checking the documentation file ==="
if [ -f "docs/desktop/encrypted-file-names.md" ]; then
sed -n '83,90p' docs/desktop/encrypted-file-names.md
fiRepository: cryptomator/docs Length of output: 1003 Fix media type mismatch: convert The video file is a Alternatively, use Recommended fix: convert to .mp4- <source src="/vid/file-names.mov" type="video/mp4" />
+ <source src="/vid/file-names.mp4" type="video/mp4" />🤖 Prompt for AI Agents |
||
| </video> | ||
Uh oh!
There was an error while loading. Please reload this page.