HelloQ365 is a Python library by Quantum365 (By Sagar) that provides encryption and decryption functionality for post quantum proof cryptography. It is built using Rust for high performance.
You can install HelloQ365 using pip:
pip install helloq365
Here's an example of how to use the library:
{
import helloq365
plaintext = "Hello, world!"
key = 3
ciphertext = helloq365.encrypt(plaintext, key)
print(ciphertext)
decrypted = helloq365.decrypt(ciphertext, key)
print(decrypted)
}
This will output:
Khoor, zruog! Hello, world!
If you want to build the library from source, you'll need to have Rust and Cargo installed. You can build the library using the following command:
cargo build --release
This will create a *.whl file in the target/wheels directory, which you can install using pip.
HelloQ365 is licensed under the MIT License.