摘要: #pragma once #ifndef SHA1_H #define SHA1_H #include "stdint.h" typedef struct { uint32_t state[5]; uint32_t count[2]; unsigned char buffer[64]; } SHA1 阅读全文
posted @ 2020-04-29 22:05 自己的小白 阅读(1224) 评论(0) 推荐(0) 编辑
摘要: //base64加密函数 string Encode(const unsigned char* Data, int DataByte) { //编码表 const char EncodeTable[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrst 阅读全文
posted @ 2020-04-29 21:59 自己的小白 阅读(622) 评论(0) 推荐(0) 编辑
摘要: 头文件:#include <atlconv.h> USES_CONVERSION; char* pszDllFileName = T2A(m_Edit_DllName); 阅读全文
posted @ 2020-04-29 21:57 自己的小白 阅读(530) 评论(0) 推荐(0) 编辑