1 Star 0 Fork 28

赵天宇/文件软硬件加解密平台

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
RC4widget.h 712 Bytes
一键复制 编辑 原始数据 按行查看 历史
qingfengfumeng 提交于 2024-10-21 01:59 . add RC4widget.h
#ifndef RC4WIDGET_H
#define RC4WIDGET_H
#include "mainwindow.h"
#include "RC4.h"
using namespace std;
namespace Ui { class RC4widget; }
class RC4widget : public QWidget
{
Q_OBJECT
public:
explicit RC4widget(QWidget *parent = 0);
~RC4widget();
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;
RC4 rc4;
Ui::RC4widget *ui;
};
#endif // RC4WIDGET_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/zty1027/cryptography_file_protection.git
git@gitee.com:zty1027/cryptography_file_protection.git
zty1027
cryptography_file_protection
文件软硬件加解密平台
master

搜索帮助