如何在 C 中调试 Vigenere 密码?
How to debug a Vigenere cipher in C?
我正在尝试制作维吉尼亚密码。我的问题是我没有得到预期的输出。当 运行 程序给出此输出时:HFNLP WPTLE。正确的输出应该是:HFNLP YOSND.
我认为问题在于 modulo (mod) 的错误使用。当我尝试用变量 i
环绕键 (ABC) 时,纯文本中的 space (" ") 也会环绕,直接影响环绕的结果。我不知道该怎么做才能获得正确的输出。
string plainText = "HELLO WORLD";
string keyword = "ABC";
for(int i = 0; i < strlen(plainText);i++)
{
int wrap = (int) strlen( keyword) % (int) strlen(plainText);
if(isalpha(plainText[i]))
{
int upper = 'A' + (plainText[i] + (toupper(keyword[i % wrap]))) % 26;
printf("%c", upper);
}
非字母字符的键索引不得增加。
修复示例:
char *keyp = keyword;
char ch;
for(int i = 0; ch = plainText[i]; i++){
if(isalpha(ch)){
putchar('A' + (toupper(ch) - 'A' + toupper(*keyp++) - 'A') % 26);
if(!*keyp)
keyp = keyword;
} else
putchar(ch);
}
我正在尝试制作维吉尼亚密码。我的问题是我没有得到预期的输出。当 运行 程序给出此输出时:HFNLP WPTLE。正确的输出应该是:HFNLP YOSND.
我认为问题在于 modulo (mod) 的错误使用。当我尝试用变量 i
环绕键 (ABC) 时,纯文本中的 space (" ") 也会环绕,直接影响环绕的结果。我不知道该怎么做才能获得正确的输出。
string plainText = "HELLO WORLD";
string keyword = "ABC";
for(int i = 0; i < strlen(plainText);i++)
{
int wrap = (int) strlen( keyword) % (int) strlen(plainText);
if(isalpha(plainText[i]))
{
int upper = 'A' + (plainText[i] + (toupper(keyword[i % wrap]))) % 26;
printf("%c", upper);
}
非字母字符的键索引不得增加。
修复示例:
char *keyp = keyword;
char ch;
for(int i = 0; ch = plainText[i]; i++){
if(isalpha(ch)){
putchar('A' + (toupper(ch) - 'A' + toupper(*keyp++) - 'A') % 26);
if(!*keyp)
keyp = keyword;
} else
putchar(ch);
}