Skip to content

Instantly share code, notes, and snippets.

View zeyu2001's full-sized avatar
🎯
Focusing

Zeyu Zhang zeyu2001

🎯
Focusing
View GitHub Profile
@zeyu2001
zeyu2001 / rsa_p36.py
Created January 8, 2019 15:19 — forked from dendisuhubdy/rsa_p36.py
RSA Implementation Running on Python 3.6
"""
Implementation of RSA cryptography
using samples of large numbers
"""
import random
import sys
import math
from random import randrange