Skip to content

BraulioVM/freqens

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Freqens

TravisCI Status

Perform frequency analysis with python

Installation

pip install freqens

Example

# break single byte xor encryption

from freqens.analyzer import EnglishAnalyzer

def single_byte_xor(text, byte):
	return "".join( chr(c ^ byte) for c in bytearray(text) )

with open("ciphertext.txt") as ciphertext_file:
	ciphertext = ciphertext_file.read()
	analyzer = EnglishAnalyzer()

	possible_plaintexts = ( single_byte_xor(ciphertext, byte) for byte in range(256) )

	answer = analyzer.choose_best(possible_plaintexts)

	print answer[0] # Solution !!!

Getting Started

Get started here

Documentation

Read them at readthedocs

About

Perform frequency analysis over different formats

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages