Skip to content

Instantly share code, notes, and snippets.

View AverageComet250's full-sized avatar
๐Ÿ˜‡

Shravan Mandava AverageComet250

๐Ÿ˜‡
View GitHub Profile
@akonradi
akonradi / vigenere_solver.py
Created August 25, 2015 03:20
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
"""
####################################################################################################