Secure Crypt is designed to get out of your way — open the app, pick a file, enter a password, and your file is encrypted. This guide walks you through the full encrypt-and-decrypt cycle for a single file, then shows you how to use Quick View for cases where you just need to open a locked file temporarily without permanently unlocking it.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Anzi001/Secure-Crypt/llms.txt
Use this file to discover all available pages before exploring further.
All encryption and decryption operations run on a background thread, so the Secure Crypt window stays responsive while your file is being processed. A progress bar popup appears during the operation.
Encrypt and Decrypt Your First File
Launch Secure Crypt
Open the Secure Crypt executable for your platform:
- Windows: Double-click
SecureCrypt_Win.exe - macOS: Double-click
SecureCrypt_Mac.app(after completing the first-launch Right-Click → Open step) - Linux: Run
./SecureCrypt_Linuxin a terminal, or double-click from your file manager
Click LOCK FILE and select a file
Under the Permanent Tools section, click the 🔒 LOCK FILE button. A standard file-picker dialog will open. Browse to any file you want to encrypt and select it.
Enter and confirm a password
A password dialog will appear. Type your password and click OK. A second dialog immediately asks you to confirm the password — type it again and click OK.
Wait for processing to complete
A small Processing… popup with an indeterminate progress bar appears while the file is being encrypted. When it closes and a success message is shown:
- The original file has been deleted.
- In its place is a new file with the same name plus a
.scryptextension (e.g.,report.pdf→report.pdf.scrypt).
Decrypt the file by clicking UNLOCK FILE
To get your original file back, click the 🔓 UNLOCK FILE button. Select the
.scrypt file you just created from the file picker.Enter the same password
The password dialog appears again. Enter the same password you used when locking the file and click OK.
Try Quick View
Quick View decrypts a file into a secure temporary directory, opens it in your system’s default application, and waits for you to click Save Edits & Relock before re-encrypting it — all without permanently unlocking the file. It is the recommended way to work with files that are under Mandatory Lock.Click QUICK VIEW FILE
In the Secure Crypt main window, click the ⚡ QUICK VIEW FILE (Auto-Relock) button at the top. A file picker dialog opens, filtered to
.scrypt files only. Select the encrypted file you want to view.Enter the password
Enter the file’s password in the dialog that appears and click OK. Secure Crypt decrypts the file into a temporary directory and opens it in the default application for that file type (e.g., a PDF viewer for
.pdf, a text editor for .txt).View or edit the file in its default application
Work with the file normally. You can make and save changes directly inside the application that opened it.A small “File opened in temporary view mode” dialog stays on top of other windows as a reminder that the file is currently decrypted.
Click Save Edits & Relock
When you are done, click 🔒 SAVE EDITS & RELOCK in the Secure Crypt dialog. The app reads the (possibly modified) file from the temp directory, generates a new random salt and nonce, re-encrypts using your password, and writes the result back to the original
.scrypt file. The temporary directory is then deleted.A “Changes saved. File re-locked.” message confirms that the operation is complete.Next Steps
Locking Files and Folders
Learn how to use Lock File, Lock Folder, Force Lock, and Mandatory Lock, and understand when to use each mode.
Quick View In Depth
Explore how Quick View works for both files and folders, including editing in place and the automatic relock flow.
Sharing Encrypted Files
Best practices for sharing
.scrypt and .scryptfold files with others, including the bundled README for recipients.Encryption Details
A technical reference covering the binary file format, PBKDF2 key derivation parameters, AES-256-GCM, and the Mandatory Lock flag byte.