Exemple #1
0
def makeItRain(ciphertext):
	print "Cry \'Havoc!\', and let slip the dogs of war"
	print "Shift Cipher:"
	shift.bruteForce(ciphertext)
	print "\nAffine Cipher:"
	affine.bruteForce(ciphertext)
	print "\nAtbash :"
	print atbash.decrypt(ciphertext)
	print "\nMorse Code:"
	print morse.encode(ciphertext)
Exemple #2
0
def speedy(plaintext, key):
	w = encrypt(plaintext, key)
	shift.bruteForce(w)