#ifndef MAKE_CERT_H #define MAKE_CERT_H // This file is part of MRCI_Client. // MRCI_Client is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // MRCI_Client is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with MRCI_Client under the LICENSE.md file. If not, see // . #include #include #include #include #include #include #include #include #include #include #include #include #include #include "db.h" #define DEFAULT_PUB_KEY_NAME "cert.pem" #define DEFAULT_PRIV_KEY_NAME "priv.pem" class Cert : public QObject { Q_OBJECT public: EVP_PKEY *pKey; X509 *x509; BIGNUM *bne; RSA *rsa; void cleanup(); explicit Cert(QObject *parent = nullptr); }; bool genRSAKey(Cert *cert); bool genX509(Cert *cert, const QString &outsideAddr); bool writePrivateKey(const char *path, Cert *cert); bool writeX509(const char *path, Cert *cert); void genDefaultSSLFiles(const QString &outsideAddr); void addExt(X509 *cert, int nid, char *value); #endif // MAKE_CERT_H