当前位置:网站首页>MFC on the conversion and display of long string unsigned char and CString
MFC on the conversion and display of long string unsigned char and CString
2022-07-06 06:18:00 【Laobai 436196571】
Today I met about MD5 Generate registration code input and display problems , The solution process is recorded below
1、 Dialog window input CString turn unsigned char Array
CString regstr;
unsigned char reg_code[20]="1234";// Test array
unsigned char reg_code_md5[20];
union TRAN_DATA
{
char c_data;
unsigned char uc_data;
};
TRAN_DATA tran_data;
GetDlgItemText(IDC_EDIT_writereg,regstr);// Dialog input
DWORD dwNum = WideCharToMultiByte(CP_OEMCP,NULL,regstr.GetBuffer(),-1,NULL,0,NULL,FALSE);
char *c_user_data = new char[dwNum];
unsigned char *uc_user_data = new unsigned char[dwNum];
memset( c_user_data,0 ,dwNum);
WideCharToMultiByte (CP_OEMCP,NULL,regstr.GetBuffer(),-1,c_user_data,dwNum,NULL,FALSE);
for(int i=0;i<dwNum;i++)
{
tran_data.c_data=c_user_data[i];
uc_user_data[i]=tran_data.uc_data;
}
Write_Regcode(card_no[0],uc_user_data,reg_code_md5);
//Write_Regcode(card_no[0],reg_code,reg_code_md5);// Test whether direct input is the same as dialog input
delete[] c_user_data;
delete[] uc_user_data;
c_user_data=NULL;
uc_user_data=NULL;
2、 The dialog window displays MD5 code ,unsigned char Array rotation CString, The dialog box shows the output
CString str;
CString str0;
// for ( int i = 0; i < sizeof (reg_code_md5) / sizeof (reg_code_md5[0]); i++)
for ( int i = 0; i < 16; i++)
{
str0.Format(_T("%02X"),reg_code_md5[i]);
str +=str0;
}
SetDlgItemText(IDC_EDIT_readreg,str);
3、 test (MD5 Registration code after adding salt )
边栏推荐
猜你喜欢
Digital triangle model acwing 1015 Picking flowers
ICLR 2022 spotlight | analog transformer: time series anomaly detection method based on correlation difference
properties文件
JMeter做接口测试,如何提取登录Cookie
【Tera Term】黑猫带你学TTL脚本——嵌入式开发中串口自动化神技能
Career advancement Guide: recommended books for people in big factories
Win10 cannot operate (delete, cut) files
浅谈专项测试之弱网络测试
黑猫带你学UFS协议第4篇:UFS协议栈详解
把el-tree选中的数组转换为数组对象
随机推荐
F - true liars (category and search set +dp)
Selenium source code read through · 9 | desiredcapabilities class analysis
Understanding of processes and threads
Leaflet map
通过修改style设置打印页样式
leetcode 24. 两两交换链表中的节点
Manhattan distance sum - print diamond
Isam2 and incrementalfixedlagsmooth instructions in gtsam
[postman] collections configuration running process
Aike AI frontier promotion (2.13)
把el-tree选中的数组转换为数组对象
Linux regularly backs up MySQL database
Simulation volume leetcode [general] 1091 The shortest path in binary matrix
【Postman】Collections-运行配置之导入数据文件
【微信小程序】搭建开发工具环境
D - How Many Answers Are Wrong
Digital triangle model acwing 1015 Picking flowers
这些年用Keil遇到的坑
[no app push general test plan
[postman] dynamic variable (also known as mock function)