SymmetricMorph CLI is a powerful command-line tool for encrypting and decrypting files using the unique SymmetricMorph algorithm.
- 🔒 Symmetric stream encryption for robust security
- ⚡ Fast and secure processing
- 📦 Cross-platform support: Windows, Linux, macOS
- 🪶 Lightweight with no external dependencies except
symmetricmorph - 🖥 User-friendly CLI interface
Install Symmorph CLI globally using npm or Yarn:
npm install -g symmorph-clior
yarn global add symmorph-cliOr use without installing globally:
npx symmorph-cli <command> [options]Encrypt a file with a password:
symmorph encrypt --input ./file.txt --output ./file.enc --password "StrongPassword123"or using shortcuts:
symmorph encrypt -i ./file.txt -o ./file.enc -p "StrongPassword123"Decrypt a file with the same password:
symmorph decrypt --input ./file.enc --output ./file.txt --password "StrongPassword123"or using shortcuts:
symmorph decrypt -i ./file.enc -o ./file.txt -p "StrongPassword123"| Option | Shortcut | Description | Required |
|---|---|---|---|
--input |
-i |
Path to input file | Yes |
--output |
-o |
Path to output file | Yes |
--password |
-p |
Password for encryption/decryption | Yes |
- Windows: cmd, PowerShell, Git Bash
- macOS: Terminal
- Linux: bash, zsh, and more
MIT License © 2025