https://github.com/ivaylo-vasilev/cryptx
Encrypt / Decrypt files
https://github.com/ivaylo-vasilev/cryptx
cli decrypt-files encrypt-files encryption-decryption python
Last synced: about 1 year ago
JSON representation
Encrypt / Decrypt files
- Host: GitHub
- URL: https://github.com/ivaylo-vasilev/cryptx
- Owner: ivaylo-vasilev
- License: mit
- Created: 2025-05-21T23:37:38.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-21T23:51:02.000Z (about 1 year ago)
- Last Synced: 2025-06-06T02:23:22.837Z (about 1 year ago)
- Topics: cli, decrypt-files, encrypt-files, encryption-decryption, python
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cryptx
Encrypt / Decrypt files
---
**cryptx.py**
```
$ cryptx.py --help
usage: cryptx.py [-h] [-e PATH] [-d PATH] [-k KEY] [-g KEY] [--version]
* CryptX - Encryption tool *
options:
-h, --help show this help message and exit
-e, --encrypt PATH Encrypt file|directory
-d, --decrypt PATH Decrypt file|directory
-k, --key KEY Insert encryption/decryption key
-g, --generate KEY Generate encryption key
--version Print program version and exit
```
**keygen.py**
```
$ keygen.py --help
usage: keygen.py [-h] [-k KEYNAME]
* CryptX Key Generator *
options:
-h, --help show this help message and exit
-k, --key KEYNAME Specify key name
```