/ascii_ye

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.

Logi

ASCII YE

License Python GitHub issues GitHub stars

Overview

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.

Features

  • Encrypting software scripts
  • Encrypt text data
  • Plain text encryption

Installation

You can install ascii_ye using pip:

pip install ascii-ye 

Example:

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)