ASCII_YE is a library that encodes text with the ASCII type, a digital encoding used to encrypt data when making requests over the Internet.
- Encrypting software scripts
- Encrypt text data
- Plain text encryption
You can install ascii_ye using pip:
pip install ascii-ye
from ascii_ye import ASCII_YE
original_text = "Hello, ASCII Encryption! By SaMi_ye"
encryptor = ASCII_YE()
encrypted_text = encryptor.encrypt(original_text)
decrypted_text = encryptor.decrypt(encrypted_text)
print("Original Text:", original_text)
print("Encrypted Text:", encrypted_text)
print("Decrypted Text:", decrypted_text)