maxacan / clypher

GNU General Public License v3.0
0 stars 0 forks source link

Clypher

Clypher is a simple command-line interface application for encrypting and decrypting files.

Features

Installation

You can install Clypher via pip.


pip install clypher

Usage

Encrypt a file:


clypher enc <file_path>

Decrypt a file:


clypher dec <file_path>

You can also encrypt and decrypt multiple files at the same time:


clypher enc <file_path1> <file_path2> <file_path3>

clypher dec <file_path1> <file_path2> <file_path3>

You can even encrypt the contents of a directory:


clypher enc ./foo/

Or, encrypt everything in said directory recursively:


clypher enc ./foo/ --recursive

To display the list of available commands:


clypher --help

To display more information about a command:


clypher <command> --help

Documentation

For more information about how Clypher works, check the documentation.

Contributing

Contributions are welcome! Please read the CONTRIBUTING.md file for guidelines.

License

This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.