Skip to content

Instantly share code, notes, and snippets.

View rroblsgo's full-sized avatar

Ricardo Robles rroblsgo

  • Sevilla - Spain
View GitHub Profile
# Caesar Cipher
2 # https://inventwithpython.com/hacking (BSD Licensed)
3 1
4 import pyperclip
5
6 # The string to be encrypted/decrypted:
7 message = 'This is my secret message.'
8
9 # the encryption/decryption key
10 key = 13