Skip to content

Files

Failed to load latest commit information.

Latest commit

 Cannot retrieve latest commit at this time.

History

History
 
 

RSA_Algorithm

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

RSA Algorithm

  • Python script that encrypts and decrypts a text based on RSA algorithm
  • It involves the concept of modular arithmatic and euler's theorem.
  • It is also based on the idea that factorizing large numbers requires years.
  • Here, the (a,n) are kept public and (p,q,b) are kept private.

Usage

For Windows users:

$ python RSA_Algorithm.py

For Mac/Linux/Unix users:

$ ./RSA_Algorithm.py

References

Blog
Paper
Video