34 Star 68 Fork 28

qingfengfumeng/文件软硬件加解密平台

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
RSAwidget.h 795 Bytes
一键复制 编辑 原始数据 按行查看 历史
qingfengfumeng 提交于 2025-03-31 18:49 +08:00 . 增加RSA前端代码设计
#ifndef RSAWIDGET_H
#define RSAWIDGET_H
#include "mainwindow.h"
#include "RSA.h"
using namespace std;
namespace Ui { class RSAwidget; }
class RSAwidget : public QWidget
{
Q_OBJECT
public:
explicit RSAwidget(QWidget *parent = 0);
~RSAwidget();
private slots:
void on_genpushButton_clicked();
void on_filepushButton_clicked();
void on_pubkeypushButton_clicked();
void on_prikeypushButton_clicked();
void on_encryptpushButton_clicked();
void on_decryptpushButton_clicked();
void on_backpushButton_clicked();
signals:
void sendsignal();
private:
string infile_path;
string publickey_path;
string privatekey_path;
RSA rsa;
Ui::RSAwidget *ui;
};
#endif // RSAWIDGET_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/qingfengfumeng/cryptography_file_protection.git
git@gitee.com:qingfengfumeng/cryptography_file_protection.git
qingfengfumeng
cryptography_file_protection
文件软硬件加解密平台
master

搜索帮助