Problem
Prior to v1.0.3, the encryption module stripped the original file extension before adding .enc. For example, image_00001.png was encrypted as image_00001.enc instead of image_00001.png.enc.
When decrypting these files, the output has no file extension (e.g., image_00001 instead of image_00001.png). The files are still valid — they just need the extension added back.
This is fixed in v1.0.3. New encrypted files preserve the original extension (image_00001.png.enc), and decryption correctly restores it (image_00001.png).
Workaround — Add the extension back manually
If you decrypted files before updating to v1.0.3 and they have no extension, follow the steps below for your platform.
macOS
- Open Automator (search in Spotlight)
- Select New Workflow
- Drag your extensionless files into the workflow
- Search for and add the Rename Finder Items action
- Choose Add Text
- In the Add field, type your file format (e.g.,
.png for images, .mp4 for videos)
- Select After Name in the dropdown
- Click Run
All files will have the extension added back.
Windows
- Place all extensionless files in one folder
- Open PowerShell and navigate to that folder
- Run the following command (replace
.png with your file format):
Get-ChildItem -File | Where-Object { $_.Extension -eq '' } | Rename-Item -NewName { $_.Name + '.png' }
Linux
- Open a terminal and navigate to the folder with extensionless files
- Run the following command (replace
.png with your file format):
for f in *; do [ -f "$f" ] && [ "${f##*.}" = "$f" ] && mv "$f" "$f.png"; done
Fix
Update to v1.0.3 or later. New encrypted files will preserve the original extension and decryption will work correctly.
Problem
Prior to v1.0.3, the encryption module stripped the original file extension before adding
.enc. For example,image_00001.pngwas encrypted asimage_00001.encinstead ofimage_00001.png.enc.When decrypting these files, the output has no file extension (e.g.,
image_00001instead ofimage_00001.png). The files are still valid — they just need the extension added back.This is fixed in v1.0.3. New encrypted files preserve the original extension (
image_00001.png.enc), and decryption correctly restores it (image_00001.png).Workaround — Add the extension back manually
If you decrypted files before updating to v1.0.3 and they have no extension, follow the steps below for your platform.
macOS
.pngfor images,.mp4for videos)All files will have the extension added back.
Windows
.pngwith your file format):Linux
.pngwith your file format):Fix
Update to v1.0.3 or later. New encrypted files will preserve the original extension and decryption will work correctly.