Skip to content

Commit

Permalink
Rivest–Shamir–Adleman Encryption Algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
privateboss0 authored Nov 29, 2023
1 parent 0e5f2a7 commit 7a3f199
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def extendedEuclid(a, b):
modulusSize = int(sys.argv[1])

except:
modulusSize = 2048 #4096 modulus size was used too but message encryption and decryption was about 9minutes due to local computational resources
modulusSize = 4096 #4096 modulus size was used too but message encryption and decryption was about 9minutes due to local computational resources, so used 2048 on my laptop

msg = (input('Type your secure message and press Enter: '))

Expand Down

0 comments on commit 7a3f199

Please sign in to comment.