瀏覽代碼

Este no esta como la version del libro ya que tenia cambios mas actualizados como diagnosticas y cambio en el ejemplo

Luis Albertorio 8 年之前
父節點
當前提交
0314494856
共有 2 個檔案被更改,包括 7 行新增3 行删除
  1. 4
    3
      README-en.md
  2. 3
    0
      README-es.md

+ 4
- 3
README-en.md 查看文件

@@ -90,8 +90,6 @@ Figure 3 shows the pseudocode of an algorithm for the Caesar cipher. Each letter
90 90
 
91 91
 The Caesar cipher is considered a weak encryption mechanism because it can easily be deciphered by using frequency analysis on the ciphered message. For example, we can use the fact that letter ‘e’ is the most frequent letter in most texts. If we find the most frequent letter in a ciphered text it very probably corresponds to the letter that was substituted by ‘e’. With this information we can compute the displacement that was used and decipher the rest of the message.
92 92
 
93
-PONER PREGUNTAS DIAGNOSTICAS AQUí
94
-
95 93
 ###The Vigenere Cypher 
96 94
 
97 95
 A main weakness of the Caesar cipher is that every letter in the cleartext message is shifted by the same number of positions. The Vignere cipher is a somewhat stronger encryption method because the shift used on each letter is not constant. Whereas the Caesar cipher receives as input a cleartext message and a displacement, the Vignere receives the cleartext message and **keyword**. For now, lets assume that the keyword and the cleartext message have the same length. The Vignere cipher uses the keyword to determine the shift that will be applied to each letter of the cleartext message, i.e. the first letter of the keyword determines the shift number for the first letter of the message and so forth. 
@@ -158,10 +156,13 @@ We will also use the following functions:
158 156
 
159 157
 
160 158
 !INCLUDE "../../eip-diagnostic/vigenere/en/diag-vigenere-01.html"
159
+<br>
161 160
 
162 161
 !INCLUDE "../../eip-diagnostic/vigenere/en/diag-vigenere-02.html"
162
+<br>
163 163
 
164 164
 !INCLUDE "../../eip-diagnostic/vigenere/en/diag-vigenere-03.html"
165
+<br>
165 166
 
166 167
 ---
167 168
 
@@ -229,4 +230,4 @@ Use "Deliverables" in Moodle to upload the `cypher.cpp` file that contains the `
229 230
 
230 231
 ##References
231 232
 
232
-http://www.nctm.org/uploadedImages/Classroom_Resources/Lesson_Plans/
233
+http://www.nctm.org/uploadedImages/Classroom_Resources/Lesson_Plans/

+ 3
- 0
README-es.md 查看文件

@@ -156,10 +156,13 @@ También utilizaremos las funciones:
156 156
 
157 157
 
158 158
 !INCLUDE "../../eip-diagnostic/vigenere/es/diag-vigenere-01.html"
159
+<br>
159 160
 
160 161
 !INCLUDE "../../eip-diagnostic/vigenere/es/diag-vigenere-02.html"
162
+<br>
161 163
 
162 164
 !INCLUDE "../../eip-diagnostic/vigenere/es/diag-vigenere-03.html"
165
+<br>
163 166
 
164 167
 
165 168
 ---