34 Star 68 Fork 28

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

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SM2widget.h 793 Bytes
一键复制 编辑 原始数据 按行查看 历史
qingfengfumeng 提交于 2025-03-31 18:50 +08:00 . 增加SM2前端代码设计
#ifndef SM2WIDGET_H
#define SM2WIDGET_H
#include "mainwindow.h"
#include "SM2.h"
using namespace std;
namespace Ui { class SM2widget; }
class SM2widget : public QWidget
{
Q_OBJECT
public:
explicit SM2widget(QWidget *parent = 0);
~SM2widget();
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;
SM2 sm2;
Ui::SM2widget *ui;
};
#endif // SM2WIDGET_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

搜索帮助