2020-05-01 21:36:35 +00:00
|
|
|
import os
|
|
|
|
import random
|
|
|
|
import sys
|
|
|
|
|
2022-10-12 22:54:20 +00:00
|
|
|
from . import cryptomath_module as cryptoMath # noqa: N812
|
|
|
|
from . import rabin_miller as rabinMiller # noqa: N812
|
2016-09-06 12:23:48 +00:00
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
|
2021-03-22 06:59:51 +00:00
|
|
|
def main() -> None:
|
2019-10-05 05:14:13 +00:00
|
|
|
print("Making key files...")
|
2022-10-12 22:54:20 +00:00
|
|
|
make_key_files("rsa", 1024)
|
2019-10-05 05:14:13 +00:00
|
|
|
print("Key files generation successful.")
|
|
|
|
|
2016-09-06 12:23:48 +00:00
|
|
|
|
2022-10-12 22:54:20 +00:00
|
|
|
def generate_key(key_size: int) -> tuple[tuple[int, int], tuple[int, int]]:
|
2019-10-05 05:14:13 +00:00
|
|
|
print("Generating prime p...")
|
2022-10-12 22:54:20 +00:00
|
|
|
p = rabinMiller.generate_large_prime(key_size)
|
2019-10-05 05:14:13 +00:00
|
|
|
print("Generating prime q...")
|
2022-10-12 22:54:20 +00:00
|
|
|
q = rabinMiller.generate_large_prime(key_size)
|
2016-09-06 12:23:48 +00:00
|
|
|
n = p * q
|
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
print("Generating e that is relatively prime to (p - 1) * (q - 1)...")
|
2016-09-06 12:23:48 +00:00
|
|
|
while True:
|
2022-10-12 22:54:20 +00:00
|
|
|
e = random.randrange(2 ** (key_size - 1), 2 ** (key_size))
|
2016-09-06 12:23:48 +00:00
|
|
|
if cryptoMath.gcd(e, (p - 1) * (q - 1)) == 1:
|
|
|
|
break
|
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
print("Calculating d that is mod inverse of e...")
|
2021-03-22 06:59:51 +00:00
|
|
|
d = cryptoMath.find_mod_inverse(e, (p - 1) * (q - 1))
|
2016-09-06 12:23:48 +00:00
|
|
|
|
2022-10-12 22:54:20 +00:00
|
|
|
public_key = (n, e)
|
|
|
|
private_key = (n, d)
|
|
|
|
return (public_key, private_key)
|
2016-09-06 12:23:48 +00:00
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
|
2022-10-12 22:54:20 +00:00
|
|
|
def make_key_files(name: str, key_size: int) -> None:
|
2022-07-07 14:34:07 +00:00
|
|
|
if os.path.exists(f"{name}_pubkey.txt") or os.path.exists(f"{name}_privkey.txt"):
|
2019-10-05 05:14:13 +00:00
|
|
|
print("\nWARNING:")
|
|
|
|
print(
|
2022-10-16 20:50:11 +00:00
|
|
|
f'"{name}_pubkey.txt" or "{name}_privkey.txt" already exists. \n'
|
2020-05-01 21:36:35 +00:00
|
|
|
"Use a different name or delete these files and re-run this program."
|
2019-10-05 05:14:13 +00:00
|
|
|
)
|
2016-09-06 12:23:48 +00:00
|
|
|
sys.exit()
|
|
|
|
|
2022-10-12 22:54:20 +00:00
|
|
|
public_key, private_key = generate_key(key_size)
|
2022-07-07 14:34:07 +00:00
|
|
|
print(f"\nWriting public key to file {name}_pubkey.txt...")
|
|
|
|
with open(f"{name}_pubkey.txt", "w") as out_file:
|
2022-10-12 22:54:20 +00:00
|
|
|
out_file.write(f"{key_size},{public_key[0]},{public_key[1]}")
|
2019-10-05 05:14:13 +00:00
|
|
|
|
2022-07-07 14:34:07 +00:00
|
|
|
print(f"Writing private key to file {name}_privkey.txt...")
|
|
|
|
with open(f"{name}_privkey.txt", "w") as out_file:
|
2022-10-12 22:54:20 +00:00
|
|
|
out_file.write(f"{key_size},{private_key[0]},{private_key[1]}")
|
2016-09-06 12:23:48 +00:00
|
|
|
|
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
if __name__ == "__main__":
|
2016-09-06 12:23:48 +00:00
|
|
|
main()
|