Python encryption module to help make the process easier for encryption data and decrypting.
Project description
Python Encrypter
Use this python package to help encrypt and decrypt files/messages/objects with a key.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
About The Project
This python package allows for ease of use to encrypt/decrypt files/objects/messages.
Built With
Getting Started
To get a local copy up and running follow these simple steps.
Prerequisites
This is an example of how to list things you need to use the software and how to install them.
- bash
sudo apt install -y python3 python3-pip pip3 install cryptography
Installation
- Clone the repo
git clone https://github.com/taosdevops/pyencrypto.git
- Install PIP package
pip3 install -e pyencrypto or python setup.py install
Usage
Use this space to show useful examples of how a project can be used. Additional screenshots, code examples and demos work well in this space. You may also link to more resources.
# pyencrypto
#!/usr/bin/env python3
from pyencrypto.crypter import Crypter
import pathlib
from time import sleep
def main():
cwd = pathlib.Path.cwd().joinpath("testing.txt")
crypter = Crypter('EF2Gtyt3XWsD1mk8gYWn-hJzjljA2dJCqeYnmIYET_E=')
crypter.set_key_session()
crypter.encrypt(cwd)
sleep(1)
crypter.decrypt(cwd)
if __name__ == '__main__':
main()
Roadmap
See the open issues for a list of proposed features (and known issues).
Contributing
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
License
Distributed under the MIT License. See LICENSE for more information.
Contact
Project Link: https://github.com/koltenfluckiger/pyencrypto
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyencrypto-1.0.tar.gz.
File metadata
- Download URL: pyencrypto-1.0.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97920a597fe05ddf4cd0be14dbd0bb9bd02254b3035648671f86240925ba2e79
|
|
| MD5 |
3d057f429e44b9e669e36a2b7f3e13ef
|
|
| BLAKE2b-256 |
7ef3b5556ef31bde2d8d1a1df7c8e782f9802fcb358410abd49d047471dff2df
|
File details
Details for the file pyencrypto-1.0-py3.8.egg.
File metadata
- Download URL: pyencrypto-1.0-py3.8.egg
- Upload date:
- Size: 8.6 kB
- Tags: Egg
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59c79b4fd46e5f20b0c300cb6f1d364c5079520a86b0db4c61c894a02fd432aa
|
|
| MD5 |
6e531c8576c49d92812f1149cd85fc71
|
|
| BLAKE2b-256 |
0f4bfa8cd25b2a8733b4a5db2d8de12d921326b07dabc59583deb6fe09eaa03d
|
File details
Details for the file pyencrypto-1.0-py3-none-any.whl.
File metadata
- Download URL: pyencrypto-1.0-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1953d458bd033312510607440b873abbf9bbb5c8c3911f55e85b54e58258ab4f
|
|
| MD5 |
ca454c5e7ae2295c8e0d50d0a9048363
|
|
| BLAKE2b-256 |
704a51962199496b67e5f0f2b47a8945f7788476ce7469da5e5ac08210d5133b
|