RosettaCodeData/Task/Vigen-re-cipher/11l/vigen-re-cipher.11l
2023-07-01 13:44:08 -04:00

28 lines
749 B
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

F encrypt(key, text)
V out =
V j = 0
L(c) text
I !c.is_alpha()
L.continue
out = Char(code' (c.uppercase().code + key[j].code - 2 * A.code) % 26 + A.code)
j = (j + 1) % key.len
R out
F decrypt(key, text)
V out =
V j = 0
L(c) text
I !c.is_alpha()
L.continue
out = Char(code' (c.code - key[j].code + 26) % 26 + A.code)
j = (j + 1) % key.len
R out
V key = VIGENERECIPHER
V original = Beware the Jabberwock, my son! The jaws that bite, the claws that catch!
V encrypted = encrypt(key, original)
V decrypted = decrypt(key, encrypted)
print(original)
print(Encrypted: encrypted)
print(Decrypted: decrypted)