Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 573 Bytes

File metadata and controls

11 lines (6 loc) · 573 Bytes

RSA-Encryption-Algorithm-in-Python

This is a Python3 implementation to the RSA Encryption Algorithm using the Extended Euclidean algorithm (also known as extended gcd).

Usage

How-To-Use-GIF

Implementation Note

The prime numbers generated (p, q) are ranged from 100 to 500 only for demo purposes while they should be very large primes like 1024 or 2048 bits long for more complex encryption - Read more about the RSA Factoring Challenge.