Skip to content

Instantly share code, notes, and snippets.

View PirKate's full-sized avatar
🦁
I may be slow to respond.

Ketevan PirKate

🦁
I may be slow to respond.
View GitHub Profile
@TobeTek
TobeTek / vigenere_cipher.py
Last active July 9, 2023 01:55
Vigenere (Keyword) Cipher - Python
"""
Vignere (Keyword) Cipher implementation in Python
"""
import string
def generate_key(keyword: str, keyletter: str = "A") -> str:
"""
Generate a polyalphabetic cipher key