Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 337 Bytes

README.md

File metadata and controls

9 lines (7 loc) · 337 Bytes

RSA_Algorithm

RSA implementation with a demo driver for proof of concept

Current settings (these can be modified in the code as needed)

  • p and q are atleast 1536 bits
  • difference of p and q is larger than 2^1000
  • public key (e) = 65537

Note: this is not a secure implementation. I wrote this code for educational purposes.