RosettaCodeData/Task/Vigen-re-cipher/Zkl/vigen-re-cipher-2.zkl
2023-07-01 13:44:08 -04:00

9 lines
298 B
Text

str := "Beware the Jabberwock, my son! The jaws that bite, "
"the claws that catch!";
key := "Vigenere Cipher";
println("Text: ", str);
println("key: ", key);
cod := encipher(str, key, True); println("Code: ", cod);
dec := encipher(cod, key, False); println("Back: ", dec);