1 Star 0 Fork 0

xiaqiu / 加解密学习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CryptTask.h 318 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiaqiu 提交于 2024-05-05 13:46 . first commit
#pragma once
#include "IOStream.h"
#include <memory>
class Crypt;
class CryptTask : public IOStream{
public:
//初始化加解密秘钥
void Init(std::string passwd);
void set_is_encrypt(int ise){is_encrypt_ = ise;}
private:
void Main();
std::shared_ptr<Crypt> enc_;
bool is_encrypt_ = true;
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mrxiao_com/DES_study.git
git@gitee.com:mrxiao_com/DES_study.git
mrxiao_com
DES_study
加解密学习
main

搜索帮助

344bd9b3 5694891 D2dac590 5694891