symmorph-cli
v1.0.0
Published
Command-line interface (CLI) for SymmetricMorph encryption library
Maintainers
Readme
Symmorph CLI
SymmetricMorph CLI is a powerful command-line tool for encrypting and decrypting files using the unique SymmetricMorph algorithm.
✨ Features
- 🔒 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
📥 Installation
Global Installation
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]🚀 Usage
Encrypt a File
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
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"📚 Options
| 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 |
🌎 Supported Platforms
- Windows: cmd, PowerShell, Git Bash
- macOS: Terminal
- Linux: bash, zsh, and more
📄 License
MIT License © 2025
