X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=slides%2Fkeyword-encipher.html;h=be90c688f040732636fb65fec4f152e52093d4f1;hb=f0263833868deb709ae23d132a149a3f7d7ab204;hp=168bb5fb78628f7b0161d56641613646d4b62136;hpb=834c3adecafb7f59f483917c90e64672d0017aaa;p=cipher-training.git diff --git a/slides/keyword-encipher.html b/slides/keyword-encipher.html index 168bb5f..be90c68 100644 --- a/slides/keyword-encipher.html +++ b/slides/keyword-encipher.html @@ -36,6 +36,11 @@ color: #ff6666; text-shadow: 0 0 20px #333; padding: 2px 5px; + } + .indexlink { + position: absolute; + bottom: 1em; + left: 1em; } .float-right { float: right; @@ -55,6 +60,12 @@ k | e | y | w | o | r | d | a | b | c | f | g | h | i | j | l | m | n | p | q | --- +layout: true + +.indexlink[[Index](index.html)] + +--- + # The cipher * Still character-by-character substitution, still monosubstitution. @@ -116,7 +127,7 @@ Use Python 3.4's `Enum` ```python from enum import Enum -class Keyword_wrap_alphabet(Enum): +class KeywordWrapAlphabet(Enum): from_a = 1 from_last = 2 from_largest = 3