Metadata-Version: 2.1
Name: CipherProgram
Version: 0.0.4
Home-page: https://github.com/Cipher58/
Download-URL: https://github.com/Cipher58/Cipher.git
Author: Cipher58
Author-email: cipher58public@gmail.com
License: The Unlicense
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# Simple Cipher Program

This program encrypts any input text into machine code. That's it lol

To use it...

```
from Cipher import *

key = 42
original_text = input("You: ")

cipher = Cipher(key)

encrypted_text = cipher.simple_xor_encrypt(original_text)
decrypted_text = cipher.simple_xor_decrypt(encrypted_text)

print("Encrypted text:", encrypted_text)
print("Decrypted text:", decrypted_text)
```
