- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不明白为什么它说“输出无效的 ASCII 文本”!
为了让您了解问题的背景,我发布了所描述的操作。从这里开始!
在替换密码中,我们通过用另一个字母替换每个字母来“加密”(即以可逆的方式隐藏)消息。为此,我们使用 key :在这种情况下,字母表中的每个字母到我们加密时应对应的字母的映射。为了“解密”消息,消息的接收者需要知道 key ,以便他们可以逆转该过程:将加密文本(通常称为密文)翻译回原始消息(通常称为明文)。
例如,键可能是字符串 NQXPOMAFTRHLZGECYJIUWSKDVB
。这个 26 个字符的 key 意味着 A
(字母表的第一个字母)应转换为 N
( key 的第一个字符)、B
(字母表的第二个字母)应转换为 Q
( key 的第二个字符),依此类推。
像 HELLO
这样的消息将被加密为 FOLLE
,根据 key 确定的映射替换每个字母。
让我们编写一个名为替换的程序,它使您能够使用替换密码来加密消息。当用户执行程序时,他们应该通过提供命令行参数来决定他们在运行时提供的 secret 消息中的 key 应该是什么。
以下是该程序如何工作的一些示例。例如,如果用户输入 key YTNSHKVEFXRBAUQZCLWDMIPGJO
和明文HELLO
:
$ ./substitution YTNSHKVEFXRBAUQZCLWDMIPGJO
plaintext: HELLO
ciphertext: EHBBQ
如果用户提供 VCHPRZGJNTLSKFBDQWAXEUYMOI
key 和 hello, world
明文,程序的工作方式如下:
$ ./substitution VCHPRZGJNTLSKFBDQWAXEUYMOI
plaintext: hello, world
ciphertext: jrssb, ybwsp
请注意,逗号和空格都没有被密码替换。只能替换字母字符!另请注意,原始消息的大小写已被保留。小写字母保持小写,大写字母保持大写。
key 本身的字符是大写还是小写并不重要。 VCHPRZGJNTLSKFBDQWAXEUYMOI
的 key 在功能上与 vchprzgjntlskfbdqwaxeuymoi
的 key 相同(就此而言,VcHpRzGjNtLsKfBdQwAxEuYmOi
)。
#include <cs50.h>
#include <stdio.h>
#include <string.h>
int main(int argc, string argv[])
{
if (argc != 2)
{
printf("Usage: ./substitution KEY");
return 1;
}
else if (argc == 2)
{
string text = argv[1];
string storing = text;
int counter = 0;
int i = 0;
bool number = true;
bool flag = true;
while (flag == true && i < 26)
{
if ((int)text[i] >= 48 && (int)text[i] <= 57)
{
number = false;
}
if (((int)text[i] >= 65 && (int)text[i] <= 90) || ((int)text[i] >= 97 && (int)text[i] <= 122))
{
counter++;
for ( int j = 0; j < counter - 1; j++)
{
if ((int)storing[j] == (int)text[i] || (int)storing[j] + 32 == (int)text[i])
{
flag = false;
}
}
}
i++;
}
if (number == false)
{
printf("Key must only contain alphabetic characters.");
return 1;
}
if (flag == false)
{
printf("Key must not contain repeated characters.");
return 1;
}
if (counter < 26)
{
printf("Key must contain 26 characters.");
return 1;
}
}
string plaintext = get_string("plaintext:");
string key = argv[1];
int counter;
bool not_letter;
bool capital1;
bool capital;
int crypto[strlen(plaintext)];
for (int i = 0; i < strlen(plaintext); i++)
{
capital1 = false;
capital = false;
not_letter = false;
if ((int)plaintext[i] >=65 && (int)plaintext[i] <= 90)
{
counter = (int)plaintext[i] - 65;
capital = true;
}
else if ((int)plaintext[i] >=97 && (int)plaintext[i] <= 122)
{
counter = (int)plaintext[i] - 97;
capital1 = true;
}
else
{
not_letter = true;
}
if (not_letter == true)
{
crypto[i] = (int)plaintext[i];
}
else if (capital == true)
{
if ((int)key[i] >=65 && (int)key[i] <= 90)
{
crypto[i] = (int)key[counter];
}
else if ((int)key[i] >=97 && (int)key[i] <= 122)
{
crypto[i] = (int)key[counter] - 32;
}
}
else if (capital1 == true)
{
if ((int)key[i] >=65 && (int)key[i] <= 90)
{
crypto[i] = (int)key[counter] + 32;
}
else if ((int)key[i] >=97 && (int)key[i] <= 122)
{
crypto[i] = (int)key[counter];
}
}
}
printf("ciphertext: ");
for (int i = 0; i < strlen(plaintext); i++)
{
printf("%c", (char)crypto[i]);
}
printf("\n");
return 0;
}
当我使用 CS50 的 check50 cs50/problems/2020/x/substitution
测试程序时,它显示:
:) substitution.c exists
:) substitution.c compiles
:) encrypts "A" as "Z" using ZYXWVUTSRQPONMLKJIHGFEDCBA as key
:) encrypts "a" as "z" using ZYXWVUTSRQPONMLKJIHGFEDCBA as key
:) encrypts "ABC" as "NJQ" using NJQSUYBRXMOPFTHZVAWCGILKED as key
:) encrypts "XyZ" as "KeD" using NJQSUYBRXMOPFTHZVAWCGILKED as key
:) encrypts "This is CS50" as "Cbah ah KH50" using YUKFRNLBAVMWZTEOGXHCIPJSQD as key
:) encrypts "This is CS50" as "Cbah ah KH50" using yukfrnlbavmwzteogxhcipjsqd as key
! :( encrypts "This is CS50" as "Cbah ah KH50" using YUKFRNLBAVMWZteogxhcipjsqd as key
output not valid ASCII text
! :( encrypts all alphabetic characters using DWUSXNPQKEGCZFJBTLYROHIAVM as key
output not valid ASCII text
:) handles lack of key
:) handles invalid key length
:) handles invalid characters in key
:) handles duplicate characters in key
:) handles multiple duplicate characters in key
最佳答案
假设您已将 key 转换为大写。
然后让我们简化一下循环:
int keyIndex;
bool lowercase;
for (int i = 0; i < strlen(plaintext); i++) {
if (plaintext[i] >= 'A' && plaintext[i] <= 'Z') {
keyIndex = plaintext[i] - 'A';
lowercase = false;
} else if (plaintext[i] >= 'a' && plaintext[i] <= 'z') {
keyIndex = plaintext[i] - 'a';
lowercase = true;
} else {
// do not encrypt that character
ciphertext[i] = plaintext[i];
// and skip the rest of the loop
continue;
}
ciphertext[i] = key[keyIndex];
// revert back to lowercase, if necessary
if (lowercase) {
ciphertext[i] += 'a' - 'A';
}
}
您遇到的问题是您没有将大问题分解为小问题。所以如果你例如提前创建一个全大写的 key ,那么以后就不需要考虑它了。
在应用程序中保持对称性也非常重要。因此,如果您在 if
的一部分中赋值,那么也在 else
中执行该操作。如果您能够提前停止(例如需要保留角色时),那么请这样做。
当然,将 key 转换为全部小写,然后在必要时将字符转换回大写当然同样有效。
切勿使用诸如 counter
或 uppercase1
之类的变量名称。它使你的代码很难阅读;变量名称应尽可能清晰。
密文数组只是上面代码中的字符串/字符数组。如果您使用的是 C 而不是 C++,那么我认为您通常会使用 char*
或 char[]
。
当然,这仍然是没有使用任何功能之间的分离。它也不使用任何平台功能。如果您设法做到这一点,那么调试/维护您的应用程序将变得更加容易。
关于c - 使用替换密码的加密不会生成有效的 ASCII 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59795874/
我想对一个字符串执行搜索和替换,比如 password。 正如您从问题中了解到的那样,替换后的字符串应变为 sdvvzrug。 但不幸的是,下面的代码输出bbbbcaab: $search = ran
我正在使用 futurize --stage2它应用了许多源代码转换以使代码 python2 和 python3 兼容。其中一个修复是所有分区 a/b 都替换为 old_div(a/b),我想避免这种
我正在使用 RStudio,但我在控制台上的输出被截断了。我找不到如何停止截断(我尝试搜索 ?options 以及在谷歌上搜索的时间比我想承认的要长)。 编辑:我向大家道歉!我最初的长名称为“This
我有一个 fragment 堆栈,我在其中使用替换和相加。添加或替换我的 fragment 的代码(在我的 Activity 中)如下 private fun addFragment(fragment
我在一个数组中插入了一些字符串,但在我这样做之前,我想按照主题所说的去做。只用 %20 替换空格,我这样做: Name.push(linkText.replace(" ", "%20")); 但是我如
我正在尝试编译和测试我在网上看到的代码 Expanding an IP add 。但是,当我尝试编译它时,我收到有关 StringBuilder 替换方法的错误。它说: IPadd.java:52:
我正在尝试使用 dplyr 的最新功能重写我的部分代码,方法是将 data.frame() 替换为 data_frame() 和 cbind() 与 bind_cols(): library(rgeo
我最近偶然发现了 replace()和 "[ x.tst s.tst s.tst [,1] [,2] [,3] [1,] 0 0 0
我一直想知道,如何在给定的参数内进行替换。 如果你有这样的一行: 123,Hello,World,(I am, here), unknown 你想更换 World与 Foobar那么这是一个简单的任务
如何转义字符串中的双引号?例如, input: "Nobody" output: \"Nobody\" 我尝试过这样的操作,但不起作用: String name = "Nobody"; name.r
我正在做类似的事情: SQL sql sQl SqL var ps = document.getElementsByTagName('p'); for(var i = 0; i 但它不会替换文本。
我正在尝试用 \" 替换所有 " 并用 JSON 解析字符串,但浏览器抛出错误 SyntaxError: JSON Parse error: Unrecognized token '\'. 下面是代码
大家好,在这里挣扎...... 是否可以将第一个正斜杠之间的任何内容替换为“”,但保留其余部分? 例如var 将是 string "/anything-here-this-needs-to-be-re
在下面的代码中,JavaScript 替换函数中的 alert(a) 将提醒匹配的字符串,在本例中,将是 {name} 和 {place}。 这按照文档 javascript docs 的描述工作,即
+-----------------------------+ | tables | +-------------------
我正在尝试用\"替换包含 "的字符串,下面是我尝试过的程序 String s="\"/test /string\""; s = s.replaceAll("\"", "\\\"");
var text = "a's ..a's ...\"... "; text = convert(text); function convert( text ) { var n = text
我正在尝试使用 JavaScript 中的替换函数,但有一个问题。 strNewDdlVolCannRegion = strNewDdlVolCannRegion.replace(/_existing
好吧,首先我对我的上一篇文章感到非常抱歉,但我真的需要帮助,我会把我真正想要的东西放在一个更清晰的代码中。我不擅长 javascript,所以希望你能帮助我。
我正在写一张纸条,遇到了障碍。可能有更有效的方法来执行此操作,但我对 Python 还很陌生。我正在尝试创建用户生成的 IP 地址列表。我正在使用 print 来查看生成的值是否正确。当我运行此代码时
我是一名优秀的程序员,十分优秀!