34 Star 68 Fork 28

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

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SM4widget.h 712 Bytes
一键复制 编辑 原始数据 按行查看 历史
qingfengfumeng 提交于 2025-03-31 19:20 +08:00 . 增加SM4前端代码设计
#ifndef SM4WIDGET_H
#define SM4WIDGET_H
#include "mainwindow.h"
#include "SM4.h"
using namespace std;
namespace Ui { class SM4widget; }
class SM4widget : public QWidget
{
Q_OBJECT
public:
explicit SM4widget(QWidget *parent = 0);
~SM4widget();
private slots:
void on_genpushButton_clicked();
void on_filepushButton_clicked();
void on_keypushButton_clicked();
void on_encryptpushButton_clicked();
void on_decryptpushButton_clicked();
void on_backpushButton_clicked();
signals:
void sendsignal();
private:
string infile_path;
string key_path;
SM4 sm4;
Ui::SM4widget *ui;
};
#endif // SM4WIDGET_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

搜索帮助