https://github.com/anivanchen/pycrypt
A series of standalone scripts built with Cryptography for encryption and decryption of files / strings.
https://github.com/anivanchen/pycrypt
cryptography python
Last synced: 15 days ago
JSON representation
A series of standalone scripts built with Cryptography for encryption and decryption of files / strings.
- Host: GitHub
- URL: https://github.com/anivanchen/pycrypt
- Owner: anivanchen
- License: mit
- Created: 2021-07-10T03:23:45.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-28T15:20:59.000Z (almost 5 years ago)
- Last Synced: 2025-02-28T22:20:55.077Z (over 1 year ago)
- Topics: cryptography, python
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CryptPy

CryptPy is a series of standalone scripts for encryption and decryption of files / strings.
## Instructions
First use `generateKey.py` to generate a `key.key` file.
To use `encryptFile.py`, first create a file named file.txt with your data.
- A `file.txt.encrypted` should be created.
To use `decryptFile.py`, have your file with encrypted data renamed to file.txt.encrypted.
- A `file.txt.decrypted` should be created.
To use `encryptString.py` or `decryptString.py`, just run the script and it will ask for input.