Skip to content

Instantly share code, notes, and snippets.

View RaitonRed's full-sized avatar
👋
Hi!

< UnKnow /> RaitonRed

👋
Hi!
View GitHub Profile
@RaitonRed
RaitonRed / clearcipher.py
Created September 4, 2025 19:57
Very Simple Cipher Algorithm
class ClearCipher:
def __init__(self, key=3):
self.alphabet = "abcdefghijklmnopqrstuvwxyz"
self.numbers = "0123456789"
self.key = key
def encode(self, input_data):
"""encoding text with shift"""
result = ""
for char in input_data: