about summary refs log tree commit diff
path: root/users/wpcarro/scratch/cryptopals/set1/c4.py
blob: 6775d73ec8cdafed01960c038442b0e5114eddfa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import c3

content = None
with open('4.txt', 'r') as f:
    c3.decode_cipher
    content = f.read().splitlines()

for line in content:
    try:
        print(c3.decode_cipher(line))
    except:
        continue