Skip to content
Snippets Groups Projects
Commit a9445f5b authored by Djamel's avatar Djamel
Browse files

Final changes

parent f8996189
Branches master
No related merge requests found
......@@ -11,6 +11,7 @@ def isPrime(n):
return False
return True
# The following block of code is partially referenced from pseudocode from user448810 on https://stackoverflow.com/questions/23279208/calculate-d-from-n-e-p-q-in-rsa
# Modified Extended Euclidean Algorithm to find modular inverse of e
def modularInverse(e, r):
a, b, u = 0, r, 1
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment