示例#1
0
 def caesar(ciphertext, key):
     result = Caesar.Caesar_Decrypt(ciphertext, key) if key else ciphertext
     return result