加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
encrythionimpl.h 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
caoxiansheng 提交于 2021-08-23 13:27 . 支持MD5,sha256,DES,RSA加密
#ifndef ENCRYTHIONIMPLEM_H
#define ENCRYTHIONIMPLEM_H
#include <QString>
#include <iostream>
#include <cassert>
#include <string>
#include <cstring>
#include <vector>
class EncrythionImpl{
public:
EncrythionImpl(){}
//md5摘要哈希
void md5(const std::string &srcStr, std::string &encodedStr, std::string &encodedHexStr);
//sha256摘要哈希
void sha256(const std::string &srcStr, std::string &encodedStr, std::string &encodedHexStr);
//des 对称加解密
// 加密 ecb模式
std::string des_encrypt(const std::string &clearText, const std::string &key);
// 解密 ecb模式
std::string des_decrypt(const std::string &cipherText, const std::string &key);
//生成密钥对RSAkey
void generateRSAKey(std::string strKey[2]);
// 公钥加密
std::string rsa_pub_encrypt(const std::string &clearText, const std::string &pubKey);
// 私钥解密
std::string rsa_pri_decrypt(const std::string &cipherText, const std::string &priKey);
//私钥加密
QString rsa_pri_encrypt_base64 (const QString& strClearData, const std::string &pubKey);
//公钥解密
QString rsa_pub_decrypt_base64(const QString& strDecryptData, const std::string &pubKey);
};
#endif // ENCRYTHIONIMPLEM_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化