好的,所以我正在为大学课程构建一个程序,它是一个简单的程序,它使用结构来模拟构建用户信息以及用户名和密码的数据库。对于实验室的额外信用,我们可以加密密码。这没什么特别的……我们没有使用 MD5 或类似的高级工具。
我需要做的就是能够将大写字符转换为小写,将小写字符转换为大写,最后,我遇到问题的部分是将十进制整数转换为十六进制。
我将尝试仅发布程序的相关部分而不是整个内容。
这是结构:
struct Info
{
string sFname;
string sLname;
string sUname;
string sPword;
string sAddress;
string sEmail;
string sPhone;
};
注意:这是一个动态的结构数组
Info *Users;
Users = new Info[size];
这是加密我到目前为止的密码的代码:
//string length for controlling loops
strlen = Users[iUsrCount].sPword.length();
//temp string to hold the encrypted version of password
string temp;
//switch uppercase characters to lowercase and vice versa, and convert
//decimal integers into hexadecimal
for(int i=0; i<strlen; i++)
{
cout << "\n\nInside encryption for loop iteration " << i << "\n\n";
if(islower(Users[iUsrCount].sPword[i]))
{
temp += toupper(Users[iUsrCount].sPword[i]);
continue;
}
else if(isupper(Users[iUsrCount].sPword[i]))
{
temp += tolower(Users[iUsrCount].sPword[i]);
continue;
}
else if(isdigit(Users[iUsrCount].sPword[i]))
{
char charNum = Users[iUsrCount].sPword[i];
int iDec = charNum - '0';
//get integer
while((i+1) < strlen && isdigit(Users[iUsrCount].sPword[i+1]))
{
i++;
iDec = iDec * 10 + Users[iUsrCount].sPword[i] - '0';
cout << " " << iDec << " ";
}
char hexTemp[10];
//convert
sprintf(hexTemp, "%x", iDec);
temp += hexTemp;
//debugging cout to make sure hexes are properly calculated
cout << " " << hexTemp << " ";
continue;
}
}
//debugging cout to make sure that password is properly encrypted
cout << endl << endl << temp << endl << endl;
strlen = temp.length();
//overwrite the plain text password with the encrypted version
for(int i=0; i<strlen; i++)
Users[iUsrCount].sPword[i] = temp[i];
//debugging cout to make sure copy was successful
cout << endl << endl << Users[iUsrCount].sPword;
因此,如果您的密码是:
456Pass45word87
加密后看起来像这样:
1c8pASS2dWORD57
我们还必须反转字符串,但这相当简单。
我的两个问题是这样的:
有没有更简单的方法来做到这一点?
在我的一生中,我无法找出正确的算法来解密密码,我需要这样做,以便当用户登录时,计算机可以将他们输入的内容与密码的纯文本版本进行比较。
注意:我绝不是专业的编码员,所以请对菜鸟手下留情,不要对我太超前。我到处寻找,但找不到任何真正帮助我解决我的具体情况的东西。
所以我把自己置于互联网的摆布之下。:D