Skip to content

Instantly share code, notes, and snippets.

View patrixae's full-sized avatar

Patricia Emmilia Lamba patrixae

View GitHub Profile
@patrixae
patrixae / vigenere_solver.py
Created September 29, 2022 06:44 — forked from akonradi/vigenere_solver.py
Python script that solves English Vigenere ciphers by comparing the input against the letter frequency distribution of the English language
import itertools
import string
import sys
import textwrap
"""
Run this script in a shell with the ciphertext to decode on STDIN
"""
####################################################################################################