我正在尝试制作一个非常简单的凯撒密码算法来加密和解密游戏中的玩家数据,但我得到了一些奇怪的结果。算法的任务很简单,只需向前或向后推动 ascii 表中的字符。
std::string Encrypt(std::string in,int key)
{
const char* chars=in.data();
char* newchar=(char*)malloc(sizeof(char)*in.length());
for(int c=0;c<in.length();c++)
{
newchar[c]=char(((int)chars[c])+key);//I suspect somewhere here is the problem
}
std::string out(newchar);
return out;
}
LOGI("encrypt:%s",Encrypt("hello",10).data());
LOGI("decrypt:%s",Encrypt(Encrypt("hello",10),-10).data());
输出:
encrypt:rovvyu@
decrypt:hellok
我对加密知之甚少,我对 ascii 和整个字符在 c 中的工作方式知之甚少