A package for monoalphabetic ciphers (encryption and decryption).
Project description
MonoCipher
MonoCipher is python programmed package which allow users to encrypt and decrypt messages in three different levels
- Simple Cryption with Shift number
- Byte Cryption with an advance method of encryption and decryption with Initialization Vector (IV) and Cipher Text. more on IV
- Salt Cryption with advance method of encryption and decryption with Initialization Vector (IV), Cipher Text, Password and salt. more on salt
The core module used in the project is pycryptodome
To Use This Module
pip install MonoCipher
Features
Simple Encryption
- This function encrypts decrypts message using shift method
- This function takes an input of message and shift number |
shift_encrypt(message, shift)
For Decrypting the message the function takes as same |shift_encrypt(message, shift)
Byte Encryption
- This encryption works in an advance method of encryption and decryption with Initialization Vector (IV) and Cipher Text. more on IV
- This function takes an input of Message and Password and returns VI and Cipher Text |
byte_encrypt(message, password)
For Decrypting the message the function takes VI, Cipher Text, and Password |byte_decrypt(iv, ciphertext, password)
Salt Encryption
- This encryption works in an advance method of encryption and decryption with Initialization Vector (IV), Cipher Text, Password and salt. more on salt
- This function takes an input of Message and Password and returns Salt, VI and Cipher Text |
salt_encrypt(message, password)
For Decrypting the message the function takes Salt, VI, Cipher Text, and Password |salt_decrypt(salt, iv, ciphertext, password)
- On this process the encrypt function generates a 256-bit key |
generate_key(password, salt)
Usage
Sure, let's go through the usage of each of the six functions. We'll provide a brief description and an example of how to use them.
Simple Encryption Module:
shift_encrypt:
Encrypts a message using a simple Caesar cipher with a specified shift value.
from MonoCipher.SimpleEncryption import shift_encrypt
message = "Hello, World!"
shift = 3
encrypted_message = shift_encrypt(message, shift)
print("Encrypted message:", encrypted_message)
shift_decrypt:
Decrypts a message encrypted with a Caesar cipher using the same shift value.
from MonoCipher.SimpleEncryption import shift_decrypt
encrypted_message = "Khoor, Zruog!"
shift = 3
decrypted_message = shift_decrypt(encrypted_message, shift)
print("Decrypted message:", decrypted_message)
Byte Encryption Module:
byte_encrypt:
Encrypts a message using AES encryption in CBC mode with a provided key.
from MonoCipher.ByteEncryption import byte_encrypt
message = "Hello, World!"
password = "MySecretPassword"
iv, ciphertext = byte_encrypt(message, password)
print("IV:", iv)
print("Ciphertext:", ciphertext)
byte_decrypt:
Decrypts a message encrypted with AES encryption using the same key and initialization vector (IV).
from MonoCipher.ByteEncryption import byte_decrypt
iv = "some_base64_encoded_iv"
ciphertext = "some_base64_encoded_ciphertext"
password = "MySecretPassword"
decrypted_message = byte_decrypt(iv, ciphertext, password)
print("Decrypted message:", decrypted_message)
Salt Encryption Module:
salt_encrypt:
Encrypts a message using AES encryption in CBC mode with a provided password and a random salt.
from MonoCipher.SaltEncryption import salt_encrypt
message = "Hello, World!"
password = "MySecretPassword"
salt, iv, ciphertext = salt_encrypt(message, password)
print("Salt:", salt)
print("IV:", iv)
print("Ciphertext:", ciphertext)
salt_decrypt:
Decrypts a message encrypted with AES encryption using the same password and salt.
from MonoCipher.SaltEncryption import salt_decrypt
salt = "some_base64_encoded_salt"
iv = "some_base64_encoded_iv"
ciphertext = "some_base64_encoded_ciphertext"
password = "MySecretPassword"
decrypted_message = salt_decrypt(salt, iv, ciphertext, password)
print("Decrypted message:", decrypted_message)
These are the usages for each of the six functions provided by the encryption modules. You can customize the input values such as the message, shift value, password, IV, and ciphertext according to your requirements.
Certainly! Here's a sample statement welcoming contributions to your encryption project:
Contributions Welcome
We welcome contributions from the community to enhance and improve our encryption project. Whether you're interested in adding new features, fixing bugs, improving documentation, or suggesting ideas, your contributions are highly appreciated.
Contact
Author : Rakesh Kanna g-mail : rakeshkanna0108@gmail.com Version : v0.1.0 Repository : https://github.com/rakeshkanna-rk/MonoCipher
MIT LICENSE
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 Distribution
File details
Details for the file MonoCipher-0.1.0.tar.gz
.
File metadata
- Download URL: MonoCipher-0.1.0.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 401cbc78030f3c16fc2ea2f7d769d698ed13e3abf95a9994e4c319a18f771f62 |
|
MD5 | eb2a4739b018787b99b70ed10aea651f |
|
BLAKE2b-256 | b19ec69fc155b8adeed3b40d9da418e729bc279d8cb7f87aca649e7261ec8326 |
File details
Details for the file MonoCipher-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: MonoCipher-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0399c5733f5f3ba468cc44f1e9476580db3ebc67cd8af93849aeef5b63ac4ab |
|
MD5 | 010f169f260d06a7cd46e6387624444c |
|
BLAKE2b-256 | 362327d10382e40f901e8d9fc13814093d4c294f93c661761cff3ff6872ed6e0 |