2013-04-11 01:07:29 -07:00
|
|
|
text = "Beware the Jabberwock, my son! The jaws that bite, the claws that catch!"
|
|
|
|
|
key = "VIGENERECIPHER"
|
|
|
|
|
|
|
|
|
|
encr = encrypt(text, key)
|
2013-04-11 11:14:19 -07:00
|
|
|
decr = decrypt(encr, key)
|
2013-04-11 01:07:29 -07:00
|
|
|
|
|
|
|
|
print text
|
|
|
|
|
print encr
|
|
|
|
|
print decr
|