caesar加密
by Brendan Massey
由布伦丹·梅西(Brendan Massey)
The Caesar Cipher is a famous implementation of early day encryption. It would take a sentence and reorganize it based on a key that is enacted upon the alphabet. Take, for example, a key of 3 and the sentence, “I like to wear hats.”
凯撒密码是早期加密的著名实现。 它需要一个句子,并根据字母上的键重新组织它。 例如,以键3和句子“我喜欢戴帽子”为例。
When this sentence is encrypted using a key of 3, it becomes:
当使用3密钥加密此句子时,它变为:
L olnh wr zhdu kdwv.
L olnh wr zhdu kdwv。
This makes it difficult to read and allows messages to be passed undetected.
这使阅读变得困难,并且使邮件无法被检测到传递。
While this is a very simple example of encryption, it is a perfect project for someone learning to code to practice on.
尽管这是一个非常简单的加密示例,但对于学习编程的人来说,这是一个完美的项目。
了解密码 (Understanding the cipher)
To implement this code, at least in JAVA, you would need to think through what is actually being done. So, let’s look at the steps necessary to take in order to code this.
要至少在JAVA中实现此代码,您需要仔细考虑实际要做的事情。 因此,让我们看看进行编码的必要步骤。
Step 1: Identify the character within the sentence.
步骤1:识别句子中的字符。
Step 2: Find that character’s location within the alphabet.
第2步:找到该字符在字母表中的位置。
Step 3: Identify that characters location + the key in the alphabet.
步骤3:确定字符位置+字母中的键。
Note* if the location + key > 26, loop back around and begin counting at one.
注意*如果位置+键> 26,则返回并开始计数。
Step 4: Build a new sentence using the new characters in place of the original characters.
步骤4:使用新字符代替原始字符来构建新句子。
Step 5: repeat until sentence length is reached. (For loop).
步骤5:重复直到达到句子长度。 (用于循环)。
Step 6: return result.
步骤6:返回结果。
加密密码 (Coding the cipher)
While those are pretty good steps to follow through with, we should think of what we would need to do in code.
尽管这些都是非常好的步骤,但是我们应该考虑在代码中需要做什么。
Step 0: Establish a function that reads in a message and a key.
步骤0:建立读取消息和密钥的功能。
Something like this:
像这样:
public String Encrypt(String message, int key) {
}
Step 1: Identify the character within the sentence.
步骤1:识别句子中的字符。
To do this, we will need to establish an alphabet to look at.
为此,我们需要建立一个字母进行查看。
Establish a variable “alphabet” that consists of the 26 letters of the alphabet.
建立一个由字母的26个字母组成的变量“字母”。
String alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";String alphabet2 = alphabet.toLowerCase();
Step 2: Find that character’s location within the alphabet.
第2步:找到该字符在字母表中的位置。
Then create a for loop that runs through every character within the message. It will be easier to do this if we establish a StringBuilder.
然后创建一个遍历消息中每个字符的for循环。 如果我们建立一个StringBuilder,这样做会更容易。
StringBuilder encrypted = new StringBuilder(message);
for (int q = 0; q < encrypted.length(); q++) { char currchar = encrypted.charAt(q); int index = alphabet.indexOf(currchar);}
At this point, we should make sure that the spot is a letter.
在这一点上,我们应该确保现货是字母。
if (index != -1) {
}
Step 3: Identify that character’s location + the key in the alphabet.
步骤3:确定人物的位置+字母中的键。
If it is a letter, then we have to find the spot in the modified alphabet. We have not yet established a modified alphabet variable, so we should do that now.
如果是字母,则必须在修改后的字母中找到该点。 我们尚未建立修改后的字母变量,因此我们现在应该这样做。
Step 4: Build a new sentence using the new characters in place of the original characters.
步骤4:使用新字符代替原始字符来构建新句子。
Once we have found the value in the modified alphabet, we should set it to the same location in the StringBuilder we created.
在修改后的字母中找到该值后,应将其设置为我们创建的StringBuilder中的相同位置。
public String Encryption(String input, int key){ StringBuilder encrypted = new StringBuilder(input); String alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; String alphabet2 = alphabet.toLowerCase(); String keyedalphabet = alphabet.substring(key) + alphabet.substring(0, key);for (int q = 0; q < encrypted.length(); q++) { char currChar = encrypted.charAt(q); int index = alphabet.indexOf(currChar); if (index != -1) { char newChar = keyedalphabet.charAt(index); encrypted.setCharAt(q, newChar); }
Step 5: repeat until sentence length is reached. (For loop)
步骤5:重复直到达到句子长度。 (用于循环)
Now, we have checked if the character is upper-case, but we also need to check if the character is lower-case. To do this, we need to access alphabet2 that we established earlier on.
现在,我们检查了字符是否为大写字母,但我们还需要检查字符是否为小写字母。 为此,我们需要访问我们之前建立的alphabet2。
index = alphabet2.indexOf(currChar); if (index != -1) { String keyedalphabet2 = keyedalphabet.toLowerCase(); char newChar = keyedalphabet2.charAt(index); encrypted.setCharAt(q, newChar); }
Step 6: return result.
步骤6:返回结果。
Now, we have completed the For loop. All we have left is to exit it and return the String.
现在,我们已经完成了For循环。 我们剩下的就是退出它并返回String。
public String Encryption(String input, int key){ StringBuilder encrypted = new StringBuilder(input); String alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; String alphabet2 = alphabet.toLowerCase(); String keyedalphabet = alphabet.substring(key) + alphabet.substring(0, key); for (int q = 0; q < encrypted.length(); q++) { char currChar = encrypted.charAt(q); int index = alphabet.indexOf(currChar); if (index != -1) { char newChar = keyedalphabet.charAt(index); encrypted.setCharAt(q, newChar); } index = alphabet2.indexOf(currChar); if (index != -1) { String keyedalphabet2 = keyedalphabet.toLowerCase(); char newChar = keyedalphabet2.charAt(index); encrypted.setCharAt(q, newChar); } } return encrypted }
Step 7: Debug.
第7步:调试。
But wait! That won’t work! encrypted is not a String, it is a StringBuilder and this function specifically requires a String to be returned!
可是等等! 那行不通! 加密的不是字符串,而是StringBuilder,此函数特别要求返回字符串!
Luckily, there is a very simple function to remedy this oversight.
幸运的是,有一个非常简单的功能可以弥补这种疏忽。
public String Encryption(String input, int key){ StringBuilder encrypted = new StringBuilder(input); String alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; String alphabet2 = alphabet.toLowerCase(); String keyedalphabet = alphabet.substring(key) + alphabet.substring(0, key); for (int q = 0; q < encrypted.length(); q++) { char currChar = encrypted.charAt(q); int index = alphabet.indexOf(currChar); if (index != -1) { char newChar = keyedalphabet.charAt(index); encrypted.setCharAt(q, newChar); } index = alphabet2.indexOf(currChar); if (index != -1) { String keyedalphabet2 = keyedalphabet.toLowerCase(); char newChar = keyedalphabet2.charAt(index); encrypted.setCharAt(q, newChar); } } return encrypted.toString(); }
That is how you get the encrypted version of your original sentence. Try it for yourself!
这就是您获取原始句子的加密版本的方式。 自己尝试一下!
Thank you for reading!
感谢您的阅读!
翻译自: https://www.freecodecamp.org/news/how-to-code-the-caesar-cipher-an-introduction-to-basic-encryption-3bf77b4e19f7/
caesar加密