Skip to content

Instantly share code, notes, and snippets.

@AntonKueltz
Created August 2, 2016 00:57
Show Gist options
  • Save AntonKueltz/1a1dad93fb9c769c78f97770835b62bf to your computer and use it in GitHub Desktop.
Save AntonKueltz/1a1dad93fb9c769c78f97770835b62bf to your computer and use it in GitHub Desktop.
def egcd(a, b):
if a == 0:
return (b, 0, 1)
else:
g, y, x = egcd(b % a, a)
return (g, x - (b // a) * y, y)
def modinv(a, m):
g, x, y = egcd(a, m)
if g != 1:
raise Exception('modular inverse does not exist')
else:
return x % m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment