A Python implementation of truly-random Vernam Cipher encryption.
Project description
Updates!
The vernamcipher project is now using truly-random keys. Credit to The Australian National University for their Quantum Random Number Generator (no affiliation). With this latest update, the vernamcipher package is officially using the strongest encryption methods with truly-random keys.
Please refer below for an in-depth explanation and usage examples.
What is the Vernam Cipher?
The Vernam Cipher was invented in 1917 by the American scientist Gilbert Vernam. It is the only cipher still proven to be unbreakable. All other ciphers and encryption methods are based on computational security and integrity, therefore they are theoretically discoverable given enough time, computational power and ciphertext.
Encryption Process
A one-time pad or key is used to encrypt plaintext. The one-time pad must be equal to or longer in characters than the plaintext. In practice, the key must be truly random and used only once. Once for encryption and once for decryption. Since the key is random, so will be the distribution of the characters meaning that no amount of cryptanalysis will produce any meaningful results.
Example
As an example, Bob wants to encrypt the letter M and send it to Alice. Bob randomly generates a random key which is the same length as the plaintext, in this case 1 character long. The plaintext and key are both converted into their ASCII binary representation.
An XOR operation is carried out between the binary character value of the first character of the plaintext and the first character of the one-time pad.
Plaintext: M | Key: + | XOR |
---|---|---|
1 | 0 | 1 |
0 | 1 | 1 |
0 | 0 | 0 |
1 | 1 | 0 |
1 | 0 | 1 |
0 | 1 | 1 |
1 | 1 | 0 |
As you can see from the table above, the XOR operations generate a 7-bit binary value of 1100110, which corresponds to the letter f on the ASCII table. Alice would then use the ciphertext f against the key + and follow the same process to decrypt the ciphertext.
Cryptanalysis and Perfect Security
Ciphers which use computer-generated random keys can be broken since mathematically generated random numbers are not truly random, they only appear to be. A truly random sequence must be collected from a physical and unpredictable phenomenon such as white noise, the time of a hard disk or radioative decay. To ensure it is mathematically impossible to break, truly random keys must be used.
Disclaimer
The truly-random keys are NOT generated on the computer or system being used. They are provided by the ANU QRNG. No computer can generate truly-random values only cryptographically strong.
Installation
vernamcipher does not require any additional dependencies and can work on a fresh Python install, without any additional requirements.
Requirements
- Python 3.8
- macOS or Linux (Windows not officially supported, but might work)
- Working internet connection required to access QRNG when generating keys.
pip3 install vernamcipher
Usage
Generate a cryptographically-strong, random key
from vernamcipher.cryptographic import Cryptographic
key = Cryptographic.generate_key()
Encrypt
from vernamcipher.cryptographic import Cryptographic
plaintext = "Hello World"
key = Cryptographic.generate_key()
encrypted_data = Cryptographic.exclusive_operations(plaintext, key)
Decrypt
from vernamcipher.cryptographic import Cryptographic
encrypted = "tTuPl"
key = Cryptographic.generate_key()
decrypted_data = Cryptographic.exclusive_operations(encrypted, key)
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 vernamcipher-1.0.4.tar.gz
.
File metadata
- Download URL: vernamcipher-1.0.4.tar.gz
- Upload date:
- Size: 18.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e64c35087f517bc3e1444cd0ec949b7738e2aaae0852c6f277ea12ac7a6aeda4 |
|
MD5 | 3f0892601fda0de317ff9229bf3bd887 |
|
BLAKE2b-256 | 3882763a44bc51ac359ffb2b33e2799e7e4647252368f3a1c8908e4b8ae45f5b |
File details
Details for the file vernamcipher-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: vernamcipher-1.0.4-py3-none-any.whl
- Upload date:
- Size: 16.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91727436295634fcbc05b9928860f087c1eef5d6d85efe405bd75f30bcccb773 |
|
MD5 | 139389953e04fe239beb06ea2fca407a |
|
BLAKE2b-256 | 860e4d325ffc36df2655d8dc94f2d052bc37b6a3a5ea76a0a24e938a46876083 |