├── GUI ├── gui.glade~ ├── main.glade ├── main.glade~ ├── popup_erro.glade ├── popup_erro.glade~ ├── popup_resultado.glade └── popup_resultado.glade~ ├── Image └── apresentacao.PNG ├── README.md ├── Test Files ├── Digest_sing_and_verify_test_files │ ├── certificate.crt │ ├── private.key │ ├── public.pem │ ├── signature │ └── test.txt └── Rand │ ├── gui_openssl_rand_output │ ├── gui_openssl_writerand_output │ └── rand file ├── __pycache__ ├── aba_checksum.cpython-38.pyc ├── aba_digest.cpython-38.pyc ├── aba_enc.cpython-38.pyc ├── aba_rand.cpython-38.pyc ├── aba_req.cpython-38.pyc ├── aba_ssh.cpython-38.pyc ├── aba_testes.cpython-38.pyc ├── popup_erro.cpython-38.pyc └── popup_resultado.cpython-38.pyc ├── aba_digest.py ├── aba_enc.py ├── aba_rand.py ├── aba_req.py ├── aba_ssh.py ├── aba_testes.py ├── main.py ├── popup_erro.py └── popup_resultado.py /GUI/gui.glade~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/GUI/gui.glade~ -------------------------------------------------------------------------------- /GUI/main.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/GUI/main.glade -------------------------------------------------------------------------------- /GUI/main.glade~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/GUI/main.glade~ -------------------------------------------------------------------------------- /GUI/popup_erro.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/GUI/popup_erro.glade -------------------------------------------------------------------------------- /GUI/popup_erro.glade~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/GUI/popup_erro.glade~ -------------------------------------------------------------------------------- /GUI/popup_resultado.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/GUI/popup_resultado.glade -------------------------------------------------------------------------------- /GUI/popup_resultado.glade~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/GUI/popup_resultado.glade~ -------------------------------------------------------------------------------- /Image/apresentacao.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/Image/apresentacao.PNG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/README.md -------------------------------------------------------------------------------- /Test Files/Digest_sing_and_verify_test_files/certificate.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/Test Files/Digest_sing_and_verify_test_files/certificate.crt -------------------------------------------------------------------------------- /Test Files/Digest_sing_and_verify_test_files/private.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/Test Files/Digest_sing_and_verify_test_files/private.key -------------------------------------------------------------------------------- /Test Files/Digest_sing_and_verify_test_files/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/Test Files/Digest_sing_and_verify_test_files/public.pem -------------------------------------------------------------------------------- /Test Files/Digest_sing_and_verify_test_files/signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/Test Files/Digest_sing_and_verify_test_files/signature -------------------------------------------------------------------------------- /Test Files/Digest_sing_and_verify_test_files/test.txt: -------------------------------------------------------------------------------- 1 | teste 2 | -------------------------------------------------------------------------------- /Test Files/Rand/gui_openssl_rand_output: -------------------------------------------------------------------------------- 1 | 960f31b2615722d0d0e0 2 | -------------------------------------------------------------------------------- /Test Files/Rand/gui_openssl_writerand_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/Test Files/Rand/gui_openssl_writerand_output -------------------------------------------------------------------------------- /Test Files/Rand/rand file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/Test Files/Rand/rand file -------------------------------------------------------------------------------- /__pycache__/aba_checksum.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/__pycache__/aba_checksum.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/aba_digest.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/__pycache__/aba_digest.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/aba_enc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/__pycache__/aba_enc.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/aba_rand.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/__pycache__/aba_rand.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/aba_req.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/__pycache__/aba_req.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/aba_ssh.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/__pycache__/aba_ssh.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/aba_testes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/__pycache__/aba_testes.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/popup_erro.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/__pycache__/popup_erro.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/popup_resultado.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/__pycache__/popup_resultado.cpython-38.pyc -------------------------------------------------------------------------------- /aba_digest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/aba_digest.py -------------------------------------------------------------------------------- /aba_enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/aba_enc.py -------------------------------------------------------------------------------- /aba_rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/aba_rand.py -------------------------------------------------------------------------------- /aba_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/aba_req.py -------------------------------------------------------------------------------- /aba_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/aba_ssh.py -------------------------------------------------------------------------------- /aba_testes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/aba_testes.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/main.py -------------------------------------------------------------------------------- /popup_erro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/popup_erro.py -------------------------------------------------------------------------------- /popup_resultado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasquiinho/OpenSSL-GUI/HEAD/popup_resultado.py --------------------------------------------------------------------------------