From: Neil Smith Date: Sat, 8 Mar 2014 13:52:48 +0000 (-0500) Subject: Fixed typo in slide 1 X-Git-Url: https://git.njae.me.uk/?p=cipher-training.git;a=commitdiff_plain;h=cecf995dc1c180ac1fdfcb6da6e90b7d61cf8fb1 Fixed typo in slide 1 --- diff --git a/slides/caesar-encipher.html b/slides/caesar-encipher.html index a4d5b2d..3c40395 100644 --- a/slides/caesar-encipher.html +++ b/slides/caesar-encipher.html @@ -64,7 +64,7 @@ ord() chr() -mod() +% ``` * What are good test cases? @@ -177,6 +177,8 @@ for p in plaintext: ciphertext += caesar_encipher_letter(p, key) ``` +...but easily generalisable + --- # Doing all the letters