Skip to content

Instantly share code, notes, and snippets.

@chelseakomlo
Created October 15, 2015 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chelseakomlo/41fe62dfd5e0a8024610 to your computer and use it in GitHub Desktop.
Save chelseakomlo/41fe62dfd5e0a8024610 to your computer and use it in GitHub Desktop.
>>> n = 3233
>>> e = 17
>>> d = 2753
>>> message_one = 65
>>> ciphertext_one = (65**e) % n
>>> (ciphertext_one ** d) % n
65L
>>> message_two = 24930
>>> ciphertext_two = (message_two ** e) % n
>>> (ciphertext_two ** d) % n
2299L
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment