Skip to main content

Python tools for encrypt and decrypt

Project description

PyCryptid

PyCryptid is a Python library for encrypt and decrypt object, text, or image

Installation

pip install cryptid

Usage Examples

Cryptid

This class can encrypt most of python object to bytes and decrypt it back to python object (using pickle)

from cryptid import Cryptid

password = 'mykey'
# or generate a new one
password = Cryptid.generate_key()

cryptid = Cryptid(password)

# encrypt and decrypt dict
normal_dict = {'name': 'John Doe', 'age': 20}
enc_dict = cryptid.encrypt(normal_dict)
dec_dict = cryptid.decrypt(enc_dict)

print(enc_dict) # encrypted <class 'bytes'>
print(dec_dict) # {'name': 'John Doe', 'age': 20}

# encrypt and decrypt function
enc_func = cryptid.encrypt(print)
dec_func = cryptid.decrypt(enc_func)

print(enc_func) # encrypted <class 'bytes'>
dec_func('John Doe') # John Doe

Cryptext

Encrypt text using AES

from cryptid import Cryptext

cryptext = Cryptext(password)
text = 'Hello World'
enc_text = cryptext.encrypt(text) # encrypted string
dec_text = cryptext.decrypt(enc_text)
print(dec_text) # Hello World

Steganography

Hide secret message in image

from cryptid import Steganography

st = Steganography()
input_image = '/path/to/image.png'
output_image = 'output.png'
message = 'Hello World'

# encode message to image
st.encode(input_image, message, output_image) # True
# or using password to encrypt the message
st.encode(input_image, message, output_image, password)

# decode message from image
original_message = st.decode('output.png')
# or with password
original_message = st.decode('output.png', password)

print(original_message) # Hello World

AudioSteganography

Hide secret message in audio file

from cryptid import AudioSteganography

ast = AudioSteganography()
input_audio = '/path/to/audio.mp3'
output_audio = 'output.mp3'
message = 'Hello World'

# encode message to audio
ast.encode(input_audio, message, output_audio) # True
# or using password to encrypt the message
ast.encode(input_audio, message, output_audio, password)

# decode message from audio
original_message = ast.decode('output.mp3')
# or with password
original_message = ast.decode('output.mp3', password)

print(original_message) # Hello World

Buy me tanghulu

https://trakteer.id/alfi-syahri

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

cryptid-1.0.2.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cryptid-1.0.2-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file cryptid-1.0.2.tar.gz.

File metadata

  • Download URL: cryptid-1.0.2.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cryptid-1.0.2.tar.gz
Algorithm Hash digest
SHA256 1de992a118128f2f758c933d6a9604b52c25390bd9e125ec41132e60f6dc5036
MD5 8c2e197ac4f9c84870e70617a91f1941
BLAKE2b-256 c5f66c9ed7741a1c05c6ae55263eee129c338758431de26babc33cea005762ff

See more details on using hashes here.

File details

Details for the file cryptid-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: cryptid-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 5.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for cryptid-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a456711df44c2bef176ff5de3f42bb8d133212b8d030e936dd1b0133a822dde7
MD5 1b1c43b67333f22f9cb9ac41fd2fb701
BLAKE2b-256 cc35e392d7bd78ef332293a48700dfe113796bdc249180e01aa457d21666cbff

See more details on using hashes here.

Supported by

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