所以我想知道如何解密使用ASCII和未知密钥通过命令行参数打开的加密文本文件,然后将其打印出来并使用答案密钥。我似乎能够实际打印出加密的消息,但是没有关于如何确定如何找到密钥并将其打印出来的线索。
int main( int argc, char *argv[]) {
FILE *fp = stdin; // defaults
int n = 13;
int shift;
// process command line
switch (argc) {
default:
fp = fopen(argv[1], "r"); // should check for problems
n = atoi(argv[2]);
break;
}
// rotate text
int c, key;
int i;
while( (c = fgetc(fp)) != EOF) {
// This is where I have managed to make C an integer
// and print out the encrypted message using the printf function.
答案 0 :(得分:2)
通常,不知道密钥的解密是不可能的。幸运的是,您的信息是用最简单的方法之一加密的...
凯撒密码加密的工作原理如下:
*选择偏移量K
*对于消息中的每个字母都要
** Letter = Letter + K
因此,如果我们想要破解该代码,我们可以查看K(255)的所有可能值,并排除生成非字母或数字的ASCII代码的所有可能性(假设原始消息是普通英语)
您可能仍需要一些用户互动来决定是否有多个选项,但选项会受到限制。