rot13 is a special case, which is fixed the shift of 13, of the Caesar cipher
(input string)
| 12 | |
| 13 | // rot13 is a special case, which is fixed the shift of 13, of the Caesar cipher |
| 14 | func rot13(input string) string { |
| 15 | return caesar.Encrypt(input, 13) |
| 16 | } |