Module rsa_python.terminal_gui

Expand source code
#!/usr/bin/env python3
import sys
import base64

from .rsa import encrypt as en, keygeneration

def terminal_gui():
    """ A simple GUI to run in terminal for experimental and entertaining
        purposes. Can also be used to generate keypairs that can be copied for
        later usage. Makes use of nearly all documented classes and functions.
        """
    warning = "The terminal has a max length input. For very large ciphers to" \
    + " decrypt it is recommended to import them as a txt file. \n "
    lines = ("\
    _________________________________________________________________________\n\
    _________________________________________________________________________\n\
    "
    )
    menu = (
    "\
    Menu:\n \n \
    (1) Generate a keypair. \n \
    (2) Encrypt something, uses key from (1) or (4). \n \
    (3) Decrypt something, uses key from (1) or (5). \n \
    (4) Enter a public key. \n \
    (5) Enter a private key. \n \
    (6) Decrypt a txt file. \n \
    (7) Quit. \n \
    "
    )
    print(lines)
    print("                           RSA-ENCRYPTION IN PYTHON")
    print(lines)
    print(warning)
    print(menu)

    while True:

        ans = input("Enter a number from 1 to 7: ")
        try:
            int(ans)
        except:
            print("Failure, none integer detected. ")
            sys.exit()

        if int(ans) > 6 or int(ans) < 1:
            sys.exit()

        if ans == '1':
            print("Choose a bit length security. Should be between 128 and" \
            + " 2048 bits. Larger keys take longer time to generate. \n")
            bit_length = int(int(input("Chosen bit length: "))/2)
            print("\n\n")
            rsa = keygeneration.generateKeys(None, None, bit_length)
            n = rsa._make_base64()[0]
            d = rsa._make_base64()[1]
            e = rsa._e
            print(rsa.get_security())
            print("\n\n")
            print(rsa.get_public())
            print("\n\n")
            print(rsa.get_private())
            print("\n\n")
            print(menu)

        if ans == '2':
            print("Saves cipher to cipher.txt.")
            print("\n")
            encrypt_this = str(input("Enter a string in UTF-8 (no åäö)"\
            + " to encrypt: "))
            print("\n\n")
            enc = en.Encryption(n, e)
            cipher = enc.encrypt_large(encrypt_this)
            print("Message: " + str(encrypt_this) + "\n" "Cipher: " + str(cipher))
            print("\n\n")
            print(menu)

        if ans == '3':
            print("Enter cipher with numbers seperated by commas, no brackets."
            + " Skip the first b. ")
            decrypt_this = input("Enter cipher: ")
            print("\n\n")
            dec = en.Decryption(n, d)
            print("Decrypted: " + str(dec.large_decrypt(decrypt_this)))
            print("\n\n")
            print(menu)

        if ans == '4':
            print("Enter a public key n in base64, exponent e in base10." \
            + " Standard exponent e is 65537. Enter n without beginning b. "
            )
            print("\n\n")
            n = input("n: ")
            n = base64.b64encode(base64.b64decode(n))
            print("\n\n")
            e = int(input("e: "))
            print("\n\n")

        if ans == '5':
            print("Enter a private key, n and d, in base64 without" \
            + " the beginning b. "
            )
            n = input("n: ")
            n = base64.b64encode(base64.b64decode(n))
            print("\n\n")
            d = input("d: ")
            d = base64.b64encode(base64.b64decode(d))
            print("\n\n")

        if ans == '6':
            print("Enter name of file to open or leave blank to use cipher.txt.")
            cipher_file = input("Cipher file: ")
            print("\n")
            print("Enter name of file to write to or leave blank to use decrypted.txt.")
            decrypt_file = input("Write file: ")
            if cipher_file == "":
                cipher_file = "cipher.txt"
            if decrypt_file == "":
                decrypt_file = "decrypted.txt"
            if decrypt_file != "":
                open(decrypt_file,"w")
            dec = en.Decryption(n, d)
            dec.decrypt_txt(cipher_file, decrypt_file)
            print("Decrypted: ")
            with open(decrypt_file, "r") as f:
                for line in f:
                    print(line)

if __name__ == "__main__":
    terminal_gui()

Functions

def terminal_gui()

A simple GUI to run in terminal for experimental and entertaining purposes. Can also be used to generate keypairs that can be copied for later usage. Makes use of nearly all documented classes and functions.

Expand source code
def terminal_gui():
    """ A simple GUI to run in terminal for experimental and entertaining
        purposes. Can also be used to generate keypairs that can be copied for
        later usage. Makes use of nearly all documented classes and functions.
        """
    warning = "The terminal has a max length input. For very large ciphers to" \
    + " decrypt it is recommended to import them as a txt file. \n "
    lines = ("\
    _________________________________________________________________________\n\
    _________________________________________________________________________\n\
    "
    )
    menu = (
    "\
    Menu:\n \n \
    (1) Generate a keypair. \n \
    (2) Encrypt something, uses key from (1) or (4). \n \
    (3) Decrypt something, uses key from (1) or (5). \n \
    (4) Enter a public key. \n \
    (5) Enter a private key. \n \
    (6) Decrypt a txt file. \n \
    (7) Quit. \n \
    "
    )
    print(lines)
    print("                           RSA-ENCRYPTION IN PYTHON")
    print(lines)
    print(warning)
    print(menu)

    while True:

        ans = input("Enter a number from 1 to 7: ")
        try:
            int(ans)
        except:
            print("Failure, none integer detected. ")
            sys.exit()

        if int(ans) > 6 or int(ans) < 1:
            sys.exit()

        if ans == '1':
            print("Choose a bit length security. Should be between 128 and" \
            + " 2048 bits. Larger keys take longer time to generate. \n")
            bit_length = int(int(input("Chosen bit length: "))/2)
            print("\n\n")
            rsa = keygeneration.generateKeys(None, None, bit_length)
            n = rsa._make_base64()[0]
            d = rsa._make_base64()[1]
            e = rsa._e
            print(rsa.get_security())
            print("\n\n")
            print(rsa.get_public())
            print("\n\n")
            print(rsa.get_private())
            print("\n\n")
            print(menu)

        if ans == '2':
            print("Saves cipher to cipher.txt.")
            print("\n")
            encrypt_this = str(input("Enter a string in UTF-8 (no åäö)"\
            + " to encrypt: "))
            print("\n\n")
            enc = en.Encryption(n, e)
            cipher = enc.encrypt_large(encrypt_this)
            print("Message: " + str(encrypt_this) + "\n" "Cipher: " + str(cipher))
            print("\n\n")
            print(menu)

        if ans == '3':
            print("Enter cipher with numbers seperated by commas, no brackets."
            + " Skip the first b. ")
            decrypt_this = input("Enter cipher: ")
            print("\n\n")
            dec = en.Decryption(n, d)
            print("Decrypted: " + str(dec.large_decrypt(decrypt_this)))
            print("\n\n")
            print(menu)

        if ans == '4':
            print("Enter a public key n in base64, exponent e in base10." \
            + " Standard exponent e is 65537. Enter n without beginning b. "
            )
            print("\n\n")
            n = input("n: ")
            n = base64.b64encode(base64.b64decode(n))
            print("\n\n")
            e = int(input("e: "))
            print("\n\n")

        if ans == '5':
            print("Enter a private key, n and d, in base64 without" \
            + " the beginning b. "
            )
            n = input("n: ")
            n = base64.b64encode(base64.b64decode(n))
            print("\n\n")
            d = input("d: ")
            d = base64.b64encode(base64.b64decode(d))
            print("\n\n")

        if ans == '6':
            print("Enter name of file to open or leave blank to use cipher.txt.")
            cipher_file = input("Cipher file: ")
            print("\n")
            print("Enter name of file to write to or leave blank to use decrypted.txt.")
            decrypt_file = input("Write file: ")
            if cipher_file == "":
                cipher_file = "cipher.txt"
            if decrypt_file == "":
                decrypt_file = "decrypted.txt"
            if decrypt_file != "":
                open(decrypt_file,"w")
            dec = en.Decryption(n, d)
            dec.decrypt_txt(cipher_file, decrypt_file)
            print("Decrypted: ")
            with open(decrypt_file, "r") as f:
                for line in f:
                    print(line)