def main():
# replace your key and plain text
my_message = 'Hello world'
my_key = 5
cipher_text = encrypt_message(my_key, my_message)
print(cipher_text + '|')
# Copy to clipboard
pyperclip.copy(cipher_text)
print('Cipher text has save to clipboard')
评论列表
文章目录