Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096
#!/bin/sh | |
sudo apt-get update && sudo apt-get upgrade | |
openssl version -a | |
#Install the necessary packages for compiling | |
sudo apt install build-essential checkinstall zlib1g-dev -y | |
#Download OpenSSL | |
cd /usr/local/src/ |
import sys | |
from PyQt5 import QtCore, QtWidgets | |
class MainWindow(QtWidgets.QWidget): | |
switch_window = QtCore.pyqtSignal(str) | |
def __init__(self): | |
QtWidgets.QWidget.__init__(self) |