Skip to main content

A minimalistic, simple AES encryption library written in python3.

Project description


oCrypt0r - A minimalistic, simple AES encryption library written in python3.

oCrypt0r allows you to encrypt and decrypt strings of text via AES. Your encrypted data/strings can only be decrypted using your own custom key and salt you set before encrypting said data. You can use this for a variety of things from creating passwords, to encrypting HWIDs and much more!. Making AES encryption a little bit easier!



Updates

What has been updated as of | 2/25/22:

Created this repo!



Installation

[Directly from here/this repo.]
- pip install git+https://github.com/therealOri/oCrypt0r

or

[From Pypi.]
- pip install oCrypt0r



Code Example

from ocryptor import oCrypt

#Encrypting
string = input("Enter string: ")
salt = input("Enter salt: ")
encr = oCrypt.Encrypt(string, salt)
print(encr)


#Decrypting
string2 = input("Enter string: ")
salt2 = input("Enter salt: ")
decr = Crypt0r().Decrypt(string2, salt2) #Will return "None" if any errors happen.
print(decr)

My own sample file for this project: oCrypt0r_sample.py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

oCrypt0r-1.0.1.tar.gz (15.0 kB view hashes)

Uploaded Source

Built Distribution

oCrypt0r-1.0.1-py3-none-any.whl (15.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page