正如帖子标题所暗示的,我正在努力加强对 C++ 和字符操作的掌握,这一次是通过创建 Vigenere Cipher。对于那些不熟悉它的人来说,这是一种加密文本文件的相当简单的方法。
它的基本工作方式是存在一个字符串“key”,并且每个字符(至少在我的情况下)都是一个小写字母字符。这些存储在一个数组中,用于“移动”正在编码的文件的值。字符“a”会将目标移动 0,而“z”会将目标移动 25。“移位”是循环的,这意味着如果“z”移动“b”(1),它应该会导致'一种'。
我目前的方法如下:
//Assume cipher[] contains "[a][b][c][x ][y ][z ]" Cipher is a <string> object
//Assume ptr[] contains "[0][1][2][23][24][25]
#A whole bunch of includes
char c;
ifstream is;
ofstream os;
is.open(argv[3]) //"myinput.txt"
os.open(argv[4]) //"myoutput.txt"
int i = 0;
while( is.good() ) {
c = is.get();
if( is.good() ) { //did we just hit the EoF?
c = tolower( c - 0 ); //just make sure it's lowercase
c = c + ptr[ i % cipher.size() ] % 26;
if( c> 122 )
c = ( c % 123 ) + 97;
i++;
os.put( c );
}
}
我相信我的问题在于我的模运算。也许是因为我花了很多时间来解决这个问题,但我昨晚花了几个小时写这个,然后又躺在床上一个小时试图把我的想法包裹在如何有效地创造我想要的东西上:
grab char.
check char. //let char = 'z'
check the cipher. //let the cipher = 'y'
eval cipher shift //'y' shift value = 24
shift z 24 places (cyclically) //'z'==25, 25+24=49, 49%26=23. 23='x'
问题在这里:如何使用 ACSII 做到这一点?('a'=97, z='121')