Skip to content

Instantly share code, notes, and snippets.

@ethan2-0
Created February 26, 2016 03:34
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 ethan2-0/31c1c53f409adb322314 to your computer and use it in GitHub Desktop.
Save ethan2-0/31c1c53f409adb322314 to your computer and use it in GitHub Desktop.
RC5 Decryption Pseudocode
for i = 2*n to 1:
l = l - K % 2^64
l = l >>> r
l = l xor r
(l, r) = (r, l)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment