https://github.com/bukson/crypto
https://github.com/bukson/crypto
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/bukson/crypto
- Owner: bukson
- Created: 2014-09-10T15:51:49.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-10T16:22:06.000Z (almost 12 years ago)
- Last Synced: 2025-02-09T13:24:24.861Z (over 1 year ago)
- Language: Python
- Size: 1.38 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
crypto
======
Cracking the vigenere cipher en.wikipedia.org/wiki/Vigenère_cipher.
First we try to find the length of key, then separte blocks coded with the same letter and crack it like Ceaser cipher.
Comments included in code :)
Files:
crackvigenere.py - Doing the job
vig.in - Example of vigenere encoded input in b64
myEncoding.py - Contains several encoding and decoding stuff(hex, b64)
textscore.py - Contains frequency analisys methods name Dicts(currently NormDict and NgramDict)