mfc大神,求问下面这段程序定义的用户名和密码是什么格式的?

HCURSORCBooKMangerDlg::OnQueryDragIcon(){return(HCURSOR)m_hIcon;}voidCBooKMangerDlg::... HCURSOR CBooKMangerDlg::OnQueryDragIcon()
{
return (HCURSOR) m_hIcon;
}
void CBooKMangerDlg::OnLogin()
{
CString type;
UpdateData(FALSE);
UpdateData(TRUE);
/* ExcleDatabase data;
CString sSql;
UpdateData(TRUE);*/
//char a[20]="a1";
//char b[20]="a1";
// TODO: Add your control notification handler code here
/* CRecordset recset(&data.database);
if (((CButton*)GetDlgItem(IDC_REANDER))->GetCheck())//0
{
sSql="select * from [user$] where id= '";
sSql=sSql+ m_user +"' and password ='";
sSql=sSql+m_password;
sSql=sSql+ "'and type =0";
//sSql="select * from [user$] where id='"+a+"' and password ='"+b+"'and type ='0'";
//sSql="select * from [user$] where id='a1' and password ='a1' and type =0";
recset.Open(CRecordset::forwardOnly, sSql, CRecordset::readOnly);
//if(recset.GetRecordCount()==0)*/
CString id,passwd;
m_user.GetWindowText(id);
m_passwd.GetWindowText(passwd);
if (((CButton*)GetDlgItem(IDC_REANDER))->GetCheck())//0
{
type="0";
for(int i=0;i<userlist.size();i++)
{
if(0==id.Compare(userlist[i].userid.c_str())&&
0==passwd.Compare(userlist[i].password.c_str())
&&type.Compare(userlist[i].type.c_str())==0)
{
break;
}
}
if(i>=userlist.size())
{
AfxMessageBox("用户名或密码错误 ");
return;
}
AfxMessageBox("登录成功!");
CReaderManager mydlg;
mydlg.setuser(id);
mydlg.DoModal();
}
else if (((CButton*)GetDlgItem(IDC_MANAGER))->GetCheck())//1
{
type="1";
/* sSql="select * from [user$] where id= '";
sSql=sSql+ m_user +"' and password ='";
sSql=sSql+m_password;
sSql=sSql+ "'and type =1";
//sSql="select * from [user$] where id='"+a+"' and password ='"+b+"'and type ='0'";
//sSql="select * from [user$] where id='a1' and password ='a1' and type =0";
recset.Open(CRecordset::forwardOnly, sSql, CRecordset::readOnly);
//if(recset.GetRecordCount()==0)
if(recset.IsEOF())
{
AfxMessageBox("用户名或密码错误 ");
return;
}
else
{
AfxMessageBox("登录成功!");
CManager mydlg;
mydlg.DoModal();
}

}*/
for(int i=0;i<userlist.size();i++)
{
if(0==id.Compare(userlist[i].userid.c_str())&&
0==passwd.Compare(userlist[i].password.c_str())
&&type.Compare(userlist[i].type.c_str())==0){
break;
}
}
if(i>=userlist.size())
{
AfxMessageBox("用户名或密码错误 ");
return;
}
AfxMessageBox("登录成功!");
CManager mydlg;
mydlg.DoModal();
}

}
展开
 我来答
bhtzu
2015-09-09 · TA获得超过1.1万个赞
知道大有可为答主
回答量:8088
采纳率:85%
帮助的人:4103万
展开全部
从这里看不出密码是什么格式的。
因为原来大段的使用excel的明文用户密码的代码,已经注销了(无效了),现在的代码逻辑,是从userlist这个内部存储的列表中获取的密码对比验证,因此要知道格式,还是要看userlist是如何管理的。不过基本可以肯定的是,密码存储没有加密,都是以明文进行存储和验证的。
追问
那我应该在哪里找userlist?还是在源文件的代码里找吗?还是其他文件?
追答
源代码中。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式