我在编写代码的最后一部分时遇到了麻烦,因为编写了一个Vigenere密码。加密部分工作正常,但我无法弄清楚如何重复加密字/关键字。因此,如果需要加密的消息小于或等于关键字,它可以正常工作,否则它会输出另外几个字符,这些字符似乎是加密的,但不是。
这是到目前为止的代码:
#include <stdio.h>
#include <cs50.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
int main(int argc, string argv[])
{
if (argc != 2)
{
printf("YELL!\n");
return 1;
}
//check if the number of command line arguments is correct, if not, YELL!
string keyword = (argv[1]);
//get keyword
for (int j = 0, n = strlen(keyword); j < n; j++)
{
if(!isalpha(keyword[j]))
{
printf("YELL!\n");
return 1;
}
}
//check if the keyword is only alphabetical, if not, YELL!
string message = GetString();
//get plaintext
for (int j = 0, n = strlen(keyword); j < n; j++)
{
if (isupper(keyword[j]))
{
keyword[j] = (keyword[j] - 'A');
}
if (islower(keyword[j]))
{
keyword[j] = (keyword[j] - 'a');
}
}
//this is to get the numerical values from the ascii values of the keyword.
for (int i = 0, j = 0, n = strlen(message); i < n; i++, j++)
//counting through the message & the cypher
{
if (isalpha(message[i]))
{
if (isupper(message[i]))
{
message[i] = (((message[i] - 'A') + keyword[j]) % 26 + 'A');
}
if (islower(message[i]))
{
message[i] = (((message[i] - 'a') + keyword[j]) % 26 + 'a');
}
//adding a keyword value [j] to message [i] and converting back to ascii value,
//individually for upper and lowercase characters.
}
printf("%c", message[i]);
}
}
这可能是一个简单的解决方案,但我无法理解。任何帮助都会非常感激!
答案 0 :(得分:1)
奇迹加密对你有用。我认为不是,因为你的循环显然可能会超过关键字长度Bearer
,然后j
将超出界限并显示未定义的行为。您只需要在消息长度上迭代keyword[j]
并使用i
索引关键字,这样索引将从0周期性地循环到keyword[i % strlen(keyword)]
减去1的长度。