Sha256: 8bf8736954f1d2b79ea68264436b3c077cc73f5eef8e60ed3526d3034b85d026
Contents?: true
Size: 471 Bytes
Versions: 220
Compression:
Stored size: 471 Bytes
Contents
" " Create an implementation of the atbash cipher, an ancient encryption system " created in the Middle East. " " Examples: " " :echo AtbashEncode('test') " gvhg " " :echo AtbashDecode('gvhg') " test " " :echo AtbashDecode('gsvjf rxpyi ldmul cqfnk hlevi gsvoz abwlt') " thequickbrownfoxjumpsoverthelazydog " function! AtbashDecode(cipher) abort " your code goes here endfunction function! AtbashEncode(plaintext) abort " your code goes here endfunction
Version data entries
220 entries across 220 versions & 1 rubygems