9 lines
298 B
Text
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);
|