Skip to content

r66ff/rsa-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

Simple implementation of RSA in python 3

Run

  • Clone the repo
  • python3.6 main.py

Notes

In this implementation

  • E is 3 unless the Extended Euclidean check fails (ax + by = g = gcd(x, y) if g != 1 we know there is a common divisor)
  • Primes are probable primes tested by Miller–Rabin algorithm that runs 20 times
  • Primes are small
  • There is no enc and dec functions... yet

About

RSA implementation in Python 3

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages