ciphers.atbash ============== .. py:module:: ciphers.atbash .. autoapi-nested-parse:: https://en.wikipedia.org/wiki/Atbash Functions --------- .. autoapisummary:: ciphers.atbash.atbash ciphers.atbash.atbash_slow ciphers.atbash.benchmark Module Contents --------------- .. py:function:: atbash(sequence: str) -> str >>> atbash("ABCDEFG") 'ZYXWVUT' >>> atbash("aW;;123BX") 'zD;;123YC' .. py:function:: atbash_slow(sequence: str) -> str >>> atbash_slow("ABCDEFG") 'ZYXWVUT' >>> atbash_slow("aW;;123BX") 'zD;;123YC' .. py:function:: benchmark() -> None Let's benchmark our functions side-by-side...