Affine Cipher Project 1 Introduction

Total Page:16

File Type:pdf, Size:1020Kb

Affine Cipher Project 1 Introduction Affine Cipher Project 141KECBZ0H5CRK1HUZK1CGPCR.5PUGUZU1WCU.CM1CUBHUCAK.6.Z5WCP1RK1UCH5 WC0EPU1KECU.C141KEC.UB1KXC,,RBHKV1PCWGRQ15P7CHCUHV1C.6CU9.CRGUG1P Directions: • Answer all numbered questions completely. • Show non-trivial work, and put your final answer in the box provided. • Questions without boxes should be answered in complete sentences in the space provided. 1 Introduction Cryptography is the study of secret codes, or the secure transmission of information that nobody except the desired recipient can read. By the end of this project, you will be able to decipher the quote printed above. The mathematical study of ciphers will lead us through a world in which the number line is a closed curve, and fractions do not exist. This project is designed to help you to: • read and understand definitions and notation • observe patterns and generalize • think logically, analytically, and abstractly • express problems and solutions precisely • follow examples • combine ideas to solve problems and create applications 1 2 Caesar Cipher A cipher is a function or algorithm for translating plaintext into encrypted ciphertext. Throughout history, governments and merchants have used ciphers to safely transmit sensitive information. Julius Caesar is said to have use a simple system of substituting each letter with the letter 3 spots over, wrapping around the alphabet if necessary. Here is the mapping: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z # # # # # # # # # # # # # # # # # # # # # # # # # # D E F G H I J K L M N O P Q R S T U V W X Y Z A B C Space and punctuation are discarded. The message \POMPEY" gets encrypted to \SRPSHB". To decrypt a message, the recipient just inverts the process. 1. Encrypt the plaintext \ATTACKATDAWN". 2. Decrypt the ciphertext \WKHTXLFNEURZQIRAMXPSVRYHUWKHODCBGRJ". 3. There is nothing special about a shift of three. Encrypt \ATTACKATDAWN" using a shift of five. 4. There are 26 letters in the alphabet, so a shift of 13 can be repeated to restore the original plaintext. This is known as the ROT13 system, and is used modern-day to hide answers, punchlines, and spoilers. Use ROT13 to decode the answer: Is it right to pay taxes to Caesar or not? TVIRGBPNRFNEJUNGVFPNRFNEF 2 3 Modular Numbers: Zn Think about the numbers on a clock, except replace the 12 with a zero. This set of numbers is called Z12. Z12 = f0; 1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11g Notice that this is a discrete set of integers. We will not be interested in fractional values between them. Starting at zero, what happens if you make one complete revolution? You might say that 12 hours have passed, but the hand points to 0. Since the clock position of 12 and 0 is the same, we say these numbers are equivalent. Similarly, 13 is equivalent to 1, 14 is equivalent to 2, etc. (think about military time). Mathematically, we write 12 (mod 12) = 0 13 (mod 12) = 1 14 (mod 12) = 2 We can also describe the equivalence using a triple-equal sign: 12 ≡ 0 (mod 12) 13 ≡ 1 (mod 12) 14 ≡ 2 (mod 12) We're just using the cyclical pattern to equate numbers that occur 12 units apart. We call 12 the base. You can add or subtract the base to get equivalent numbers. For example, to find numbers equivalent to 8 (mod 12), start at 8 and repeatedly add or subtract 12. These are all equivalent: −4 ≡ 8 ≡ 20 ≡ 32 (mod 12) since they correspond to the same position on the clock. Numbers that are equal in this way are referred to as aliases or members of the same equivalence class. You evaluate a number (mod 12) by finding out the position (between 0 and 11) that it is equivalent to. For example, to evaluate 27 (mod 12), start at 27 and repeatedly subtract 12 until you get inside Z12. The answer is 3, which we write by saying 27 (mod 12) = 3 We could also write 27 ≡ 3 (mod 12). Hence 27 is an alias of 3. 3 5. Evaluate the following. (a) 18 (mod 12) (d) −3 (mod 12) (b) 37 (mod 12) (e) 124 (mod 12) (c) 48 (mod 12) (f) −14 (mod 12) 6. List 4 aliases of 7 (mod 12). 7. True or false? (a)3 ≡ 39 (mod 12) (c) 18 ≡ 48 (mod 12) (b) 17 ≡ 125 (mod 12) (d) −33 ≡ 51 (mod 12) 8. If x ≡ y (mod 12) then you know that the difference, x − y, is divisible by . 9. You know that 27 (mod 12) = 3. What is the remainder when you divide 27 by 12 ? . There is nothing special about 12. For example, we could work in base 7, where the universe of numbers is Z7 = f0; 1; 2; 3; 4; 5; 6g 4 Zn always goes from zero up to n − 1 (one less than the base). Reducing an integer to its equivalent member of Z7 works the same as it did in base 12. For example, 11 (mod 7) = 4 or put another way 11 ≡ 4 (mod 7) since 11 and 4 are 7 units apart. Also, notice that 4 is the remainder when you divide 11 by 7. As another example, let's evaluate −13 (mod 5). Start at -13, and repeatedly add 5 until you're in Z5 = f0; 1; 2; 3; 4g. −13; −8; −3; 2 Therefore we know that −13 (mod 5) = 2. You can get this answer in Excel; click on a cell and type: =mod(-13,5) Notice that -13 and 2 are 15 units apart. In general, two numbers are aliases if the difference between them is a multiple of the base. 10. Evaluate mod the given base: (a) 9 (mod 5) (f) 24 (mod 3) (b) −4 (mod 17) (g) 24 (mod 4) (c) 56 (mod 41) (h) −14 (mod 5) (d) 56 (mod 26) (e) 27 (mod 6) (i) −14 (mod 7) 11. True or false? (a)3 ≡ 31 (mod 7) (c)3 ≡ 31 (mod 4) (b)3 ≡ 31 (mod 5) (d) 119 ≡ 0 (mod 13) 12. List 4 aliases of 1 (mod 26). 5 4 Addition and subtraction Addition can be visualized as a clockwise rotation around the Zn clock. Subtraction moves counter-clockwise. In general, add or subtract as usual, and then reduce the answer modulo the base. For example: 5 + 11 (mod 12) = 16 (mod 12) = 4 It looks strange to say that 5 + 11 = 4, but it should make sense given the cyclic nature of these number systems. If you start at 5 o'clock and add 11 hours, then the clock reads 4 o'clock. Subtraction works similarly: 7 − 22 (mod 12) = −15 (mod 12) = 9 13. Do the following arithmetic: (a) 4 + 5 (mod 7) (e) 10 + 20 (mod 26) (b) 1 + 1 (mod 2) (f) 10 − 20 (mod 26) (c)2 − 11 (mod 4) (g) 7 + 4 (mod 10) (d) 13 + 7 (mod 5) (h) 12 + 12 + 12 + 12 (mod 41) You can do simple algebra in modular arithmetic, but make sure your answer is within the correct range. For example, let's solve: x + 7 ≡ 4 (mod 9) Subtract 7 from both sides to get x = −3, but it's not quite right since we only accept answers that lie in the set Z9 = f0; 1; 2; ··· ; 8g. Realizing that −3 ≡ 6 (mod 9), the correct answer is x = 6. You can check your answer by verifying that 6 + 7 (mod 9) = 13 (mod 9) = 4 14. Solve each equation. List all possible answers in Zn where n is the base. (a)8+ x ≡ 3 (mod 12) (c) 35 + x ≡ 0 (mod 41) (b) x − 7 ≡ 5 (mod 17) (d) x + x ≡ 4 (mod 12) 6 5 Caesar Cipher Revisited The Caesar cipher can be described in terms of modular arithmetic. Imagine a 26 position clock, where each letter of the alphabet corresponds to a number in Z26. Let x be the number corresponding to a plaintext letter, and y be the number corresponding to a ciphertext letter. For example, with a Caesar cipher shift of 3 positions, we may have 'J' (x = 9) mapping to 'M' (y = 12). Caesar's encryption function can be written algebraically as: y = f(x) = x + 3 (mod 26) To be more general (pun intended), we could have an shift of b characters. y = f(x) = x + b (mod 26) Subtracting b from both sides, we see that the inverse function used to decrypt messages is x = f −1(y) = y − b (mod 26) For example, using b = 3, the map between plaintext 'J' and ciphertext 'M' is represented by: y = f(9) = 9 + 3 (mod 26) = 12 x = f −1(12) = 12 − 3 (mod 26) = 9 15. Use the Caesar cipher with b = 7 to encrypt your \SHZA" name. 7 16. Is it true that f(x) = x + 13 (mod 26) is the same as f(x) = x − 13 (mod 26) ? Explain. 17. Write a function that is the same as f(x) = x − 10 (mod 26), but does not use subtraction. 8 6 Multiplication After multiplying numbers in Zn, reduce result modulo the base. For example: 3 · 7 (mod 12) = 21 (mod 12) = 9 − 2 · 5 (mod 3) = −10 (mod 3) = 2 We can even set up a multiplication table like you did in elementary school, but this one will look a little different. Here is the (mod 12) multiplication table: × 0 1 2 3 4 5 6 7 8 9 10 11 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 2 3 4 5 6 7 8 9 10 11 2 0 2 4 6 8 10 0 2 4 6 8 10 3 0 3 6 9 0 3 6 9 0 3 6 9 4 0 4 8 0 4 8 0 4 8 0 4 8 5 0 5 10 3 8 1 6 11 4 9 2 7 6 0 6 0 6 0 6 0 6 0 6 0 6 7 0 7 2 9 4 11 6 1 8 3 10 5 8 0 8 4 0 8 4 0 8 4 0 8 4 9 0 9 6 3 0 9 6 3 0 9 6 3 10 0 10 8 6 4 2 0 10 8 6 4 2 11 0 11 10 9 8 7 6 5 4 3 2 1 This table is symmetric, and you should notice lots of patterns.
Recommended publications
  • Amy Bell Abilene, TX December 2005
    Compositional Cryptology Thesis Presented to the Honors Committee of McMurry University In partial fulfillment of the requirements for Undergraduate Honors in Math By Amy Bell Abilene, TX December 2005 i ii Acknowledgements I could not have completed this thesis without all the support of my professors, family, and friends. Dr. McCoun especially deserves many thanks for helping me to develop the idea of compositional cryptology and for all the countless hours spent discussing new ideas and ways to expand my thesis. Because of his persistence and dedication, I was able to learn and go deeper into the subject matter than I ever expected. My committee members, Dr. Rittenhouse and Dr. Thornburg were also extremely helpful in giving me great advice for presenting my thesis. I also want to thank my family for always supporting me through everything. Without their love and encouragement I would never have been able to complete my thesis. Thanks also should go to my wonderful roommates who helped to keep me motivated during the final stressful months of my thesis. I especially want to thank my fiancé, Gian Falco, who has always believed in me and given me so much love and support throughout my college career. There are many more professors, coaches, and friends that I want to thank not only for encouraging me with my thesis, but also for helping me through all my pursuits at school. Thank you to all of my McMurry family! iii Preface The goal of this research was to gain a deeper understanding of some existing cryptosystems, to implement these cryptosystems in a computer programming language of my choice, and to discover whether the composition of cryptosystems leads to greater security.
    [Show full text]
  • The Mathemathics of Secrets.Pdf
    THE MATHEMATICS OF SECRETS THE MATHEMATICS OF SECRETS CRYPTOGRAPHY FROM CAESAR CIPHERS TO DIGITAL ENCRYPTION JOSHUA HOLDEN PRINCETON UNIVERSITY PRESS PRINCETON AND OXFORD Copyright c 2017 by Princeton University Press Published by Princeton University Press, 41 William Street, Princeton, New Jersey 08540 In the United Kingdom: Princeton University Press, 6 Oxford Street, Woodstock, Oxfordshire OX20 1TR press.princeton.edu Jacket image courtesy of Shutterstock; design by Lorraine Betz Doneker All Rights Reserved Library of Congress Cataloging-in-Publication Data Names: Holden, Joshua, 1970– author. Title: The mathematics of secrets : cryptography from Caesar ciphers to digital encryption / Joshua Holden. Description: Princeton : Princeton University Press, [2017] | Includes bibliographical references and index. Identifiers: LCCN 2016014840 | ISBN 9780691141756 (hardcover : alk. paper) Subjects: LCSH: Cryptography—Mathematics. | Ciphers. | Computer security. Classification: LCC Z103 .H664 2017 | DDC 005.8/2—dc23 LC record available at https://lccn.loc.gov/2016014840 British Library Cataloging-in-Publication Data is available This book has been composed in Linux Libertine Printed on acid-free paper. ∞ Printed in the United States of America 13579108642 To Lana and Richard for their love and support CONTENTS Preface xi Acknowledgments xiii Introduction to Ciphers and Substitution 1 1.1 Alice and Bob and Carl and Julius: Terminology and Caesar Cipher 1 1.2 The Key to the Matter: Generalizing the Caesar Cipher 4 1.3 Multiplicative Ciphers 6
    [Show full text]
  • With Answers
    Module 10.4: Exploring Some Historical Ciphers Gregory V. Bard January 30, 2020 • This is a practice workbook the Affine Cipher, touching on some shift ciphers (such as the Caesar cipher, the ROT-13 cipher), the Atbash cipher, and the Vigen`ereCipher. • The Affine Cipher was introduced in Module 10-2: The Basics of Modular Arithmetic, and some skills from Module 10-3: Modular Inverses are needed. • There is a with-answers version, and a without-answers version. • In the with-answers version of this workbook, the black ink represents the question, and the blue ink represents the answer. Question 10-4-1 Suppose Boris normally communicates with his handlers in Moscow using the affine cipher, and the encryption function c = fB(p) = 7p + 20 mod 26, while Natasha normally uses c = fN (p) = 11p + 8 mod 26. They have a very secret message to send back to Moscow, so they're going to encrypt the message twice, for added security. As you can probably guess, this is equivalent to using the affine cipher only once, but with a different function. • If Boris encrypts the plaintext first, followed by Natasha second, then what would BAT encrypt to? (B, A, T) becomes (1, 0, 19) and encrypts to (fB(1); fB(0); fB(19)) ≡ (1; 20; 23). We encrypt again to (fN (1); fN (20); fN (23)) ≡ (19; 20; 1), which becomes (T, U, B) or TUB. • If Natasha encrypts the plaintext first, followed by Boris second, then what would BAT encrypt to? (B, A, T) becomes (1, 0, 19) and encrypts to (fN (1); fN (0); fN (19)) ≡ (19; 8; 9).
    [Show full text]
  • MAT 302: LECTURE SUMMARY Last Class We Discussed Two Classical Ciphers, Both of Which Turned out to Be Rather Insecure (As Evide
    MAT 302: LECTURE SUMMARY Last class we discussed two classical ciphers, both of which turned out to be rather insecure (as evidenced by your cracking them manually during lecture): • The Scytale cipher • The Caesar (aka shift) cipher We began today’s lecture by writing the latter down in mathematical notation. To this end, it is convenient to use the set A = f0; 1; 2;:::; 25g to represent the English alphabet, i.e. 0 represents A, 1 represents B, etc. The Caesar Cipher. The Caesar cipher (or shift cipher) consists of a key k 2 Z, an encryption function ek : A −! A x 7−! x + k (mod 26) and a decryption function dk : A −! A x 7−! x − k (mod 26): The Caesar cipher is insecure because the space of all possible keys is rather small (how many are there?), so it is a trivial matter for Oscar to check all possible keys. We next discussed a variant of this, whose key space is somewhat larger: the affine cipher. The Affine Cipher. The affine cipher consists of a key (a; b) 2 Z2, an encryption function e(a;b) : A −! A x 7−! ax + b (mod 26) and a decryption function d(a;b) : A −! A x 7−! a−1(x − b) (mod 26) Actually, as stated this isn’t well-defined: a−1 doesn’t always exist (mod 26). Recall that a−1 is the element of A satisfying a−1a ≡ 1 (mod 26): For example, 0 has no (multiplicative) inverse (mod 26). Less trivially, 2 has no multiplicative inverse.
    [Show full text]
  • An Introduction to Cryptography
    abstract examples cryptanalysis harder cryptography schemes An Introduction to Cryptography Joe Fields http://www.southernct.edu/~fields/ Joe Fields Cryptography abstract examples Terminology cryptanalysis harder cryptography schemes Cryptography is the study of "secret writing." This is the only branch of mathematics to be designated by the U.S. government as export-controlled. Cryptographic knowledge is considered to be "war materials!" While we won't head off into TOP SECRET territory we will have a bit of fun working out how to make (and to break) good secret codes. Joe Fields Cryptography abstract examples Terminology cryptanalysis harder cryptography schemes the enigma Joe Fields Cryptography abstract examples Terminology cryptanalysis harder cryptography schemes WACs Joe Fields Cryptography Cryptology means \the study of secrets" practically speaking, they are synonyms... abstract examples Terminology cryptanalysis harder cryptography schemes Cryptography or Cryptology? Cryptography means \secret writing" Joe Fields Cryptography practically speaking, they are synonyms... abstract examples Terminology cryptanalysis harder cryptography schemes Cryptography or Cryptology? Cryptography means \secret writing" Cryptology means \the study of secrets" Joe Fields Cryptography abstract examples Terminology cryptanalysis harder cryptography schemes Cryptography or Cryptology? Cryptography means \secret writing" Cryptology means \the study of secrets" practically speaking, they are synonyms... Joe Fields Cryptography Bob (the recipient) but they are afraid that. Eve (the eavesdropper) will snoop on them and learn their secrets. abstract examples Terminology cryptanalysis harder cryptography schemes Cast of Characters Alice (the sender) wants to send a message to. Joe Fields Cryptography Eve (the eavesdropper) will snoop on them and learn their secrets. abstract examples Terminology cryptanalysis harder cryptography schemes Cast of Characters Alice (the sender) wants to send a message to.
    [Show full text]
  • Cryptography
    Cryptography Lecture 02 Byte-wise Shift Cipher Byte-wise Shift Cipher I Instead of a; b; c; d;:::; z have (for example) 0000, 0001,:::,1111. I Works for an alphabet of bytes rather than (English, lowercase) letters I Data in a computer is stored this way anyway. So works natively for arbitrary data! I Use XOR instead of modular addition. Fast! I Decode and Encode are both XOR. I Essential properties still hold Hexadecimal (base 16) Hex Bits (\nibble") Decimal Hex Bits (\nibble") Decimal 0 0000 0 8 1000 8 1 0001 1 9 1001 9 2 0010 2 A 1010 10 3 0011 3 B 1011 11 4 0100 4 C 1100 12 5 0101 5 D 1101 13 6 0110 6 E 1110 14 7 0111 7 F 1111 15 Hexadecimal (base 16) Notation: 0x before a string of f0; 1;:::; 9; A; B; C; D; E; F g means that the string will be base 16. I 0x10 I 0x10 = 16*1 + 0 = 16 I 0x10 = 0001 0000 I 0xAF I 0xAF = 16*A + F = 16*10 + 15 = 175 I 0xAF = 1010 1111 ASCII I Characters (often) represented in ASCII with TWO hex-digits. I Potentially 256 characters via f0;:::; 9; A;:::; F g × f0;:::; 9; A;:::; F g I Only use 128 characters via f0;::: 8g × f0;:::; 9; A;:::; F g ASCII I `1' = 0x31 = 0011 0001 I `F' = 0x46 = 0100 0110 Useful observations I Only 128 valid ASCII chars (128 bytes invalid) I 0x20-0x7E printable I 0x41-0x7A includes upper/lowercase letters I Uppercase letters begin with 0x4 or 0x5 I Lowercase letters begin with 0x6 or 0x7 Byte-wise shift cipher I M = fstrings of bytesg I Gen: choose uniform byte k 2 K = f0,.
    [Show full text]
  • Shift Cipher Substitution Cipher Vigenère Cipher Hill Cipher
    Lecture 2 Classical Cryptosystems Shift cipher Substitution cipher Vigenère cipher Hill cipher 1 Shift Cipher • A Substitution Cipher • The Key Space: – [0 … 25] • Encryption given a key K: – each letter in the plaintext P is replaced with the K’th letter following the corresponding number ( shift right ) • Decryption given K: – shift left • History: K = 3, Caesar’s cipher 2 Shift Cipher • Formally: • Let P=C= K=Z 26 For 0≤K≤25 ek(x) = x+K mod 26 and dk(y) = y-K mod 26 ʚͬ, ͭ ∈ ͔ͦͪ ʛ 3 Shift Cipher: An Example ABCDEFGHIJKLMNOPQRSTUVWXYZ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 • P = CRYPTOGRAPHYISFUN Note that punctuation is often • K = 11 eliminated • C = NCJAVZRCLASJTDQFY • C → 2; 2+11 mod 26 = 13 → N • R → 17; 17+11 mod 26 = 2 → C • … • N → 13; 13+11 mod 26 = 24 → Y 4 Shift Cipher: Cryptanalysis • Can an attacker find K? – YES: exhaustive search, key space is small (<= 26 possible keys). – Once K is found, very easy to decrypt Exercise 1: decrypt the following ciphertext hphtwwxppelextoytrse Exercise 2: decrypt the following ciphertext jbcrclqrwcrvnbjenbwrwn VERY useful MATLAB functions can be found here: http://www2.math.umd.edu/~lcw/MatlabCode/ 5 General Mono-alphabetical Substitution Cipher • The key space: all possible permutations of Σ = {A, B, C, …, Z} • Encryption, given a key (permutation) π: – each letter X in the plaintext P is replaced with π(X) • Decryption, given a key π: – each letter Y in the ciphertext C is replaced with π-1(Y) • Example ABCDEFGHIJKLMNOPQRSTUVWXYZ πBADCZHWYGOQXSVTRNMSKJI PEFU • BECAUSE AZDBJSZ 6 Strength of the General Substitution Cipher • Exhaustive search is now infeasible – key space size is 26! ≈ 4*10 26 • Dominates the art of secret writing throughout the first millennium A.D.
    [Show full text]
  • Name: SOLUTIONS SID
    EE 418 Midterm 1 University of Washington, Seattle Fall 2004 Name: SOLUTIONS SID#: 1. Read the questions carefully before solving them. 2. Attempt all questions. 3. You may not use any electronic device for calculations. 4. You are allowed to use text book, classnotes, homework problems and solutions. It is a good idea to solve problems in the order of increasing di±culty. 5. You might ¯nd the following useful: Table 1: A correspondence between alphabetic characters and numbers A B C D E F G H I J K L M 0 1 2 3 4 5 6 7 8 9 10 11 12 N O P Q R S T U V W X Y Z 13 14 15 16 17 18 19 20 21 22 23 24 25 µ ¶¡1 µ ¶ a b d ¡b = (ad ¡ bc)¡1 mod 26. c d ¡c a ax ´ b mod n has a unique solution only if gcd(a,n)=1. a b n a ´ b mod n can be simpli¯ed as m ´ m mod m where m is a divisor of a; b; n. Good Luck and Enjoy! 1 Problem 1: 1. Homer Simpson wants to impress the community by proposing mod 27 instead of mod 26 for A±ne Cipher. Lisa however says mod 29 would be better. Can you as the moderator decide whether there is any di®erence in the claims, and whether father's claim is better than daughter's or vice versa? Justify your decision. (Hint: how many keys are possible?) 10 points.
    [Show full text]
  • Classic Crypto
    Classic Crypto Classic Crypto 1 Overview We briefly consider the following classic (pen and paper) ciphers o Transposition ciphers o Substitution ciphers o One-time pad o Codebook These were all chosen for a reason o We see same principles in modern ciphers Classic Crypto 2 Transposition Ciphers In transposition ciphers, we transpose (scramble) the plaintext letters o The scrambled text is the ciphertext o The transposition is the key Corresponds to Shannon’s principle of diffusion (more about this later) o This idea is widely used in modern ciphers Classic Crypto 3 Scytale Spartans, circa 500 BC Wind strip of leather around a rod Write message across the rod T H E T I M E H A S C O M E T H E W A L R U S S A I D T O T A L K O F M A N Y T H I N G S When unwrapped, letters are scrambled TSATAHCLONEORTYTMUATIESLHMTS… Classic Crypto 4 Scytale Suppose Alice and Bob use Scytale to encrypt a message o What is the key? o How hard is it for Trudy to break without key? Suppose many different rod diameters are available to Alice and Bob… o How hard is it for Trudy to break a message? o Can Trudy attack messages automatically—without manually examining each putative decrypt? Classic Crypto 5 Columnar Transposition Put plaintext into rows of matrix then read ciphertext out of columns For example, suppose matrix is 3 x 4 o Plaintext: SEETHELIGHT o Ciphertext: SHGEEHELTTIX Same effect as Scytale o What is the key? Classic Crypto 6 Keyword Columnar Transposition For example o Plaintext: CRYPTOISFUN o Matrix 3 x 4 and keyword MATH o Ciphertext:
    [Show full text]
  • EE 418 Network Security and Cryptography Lecture #5 Outline: 1
    EE 418 Network Security and Cryptography Lecture #5 October 13, 2016 Polyalphabetic Classical cryptosystems. Introduction to Cryptanalysis. Lecture notes prepared by Professor Radha Poovendran. Tamara Bonaci Department of Electrical Engineering University of Washington, Seattle Outline: 1. Review: The Vigen`ereCipher 2. The Hill Cipher 3. The Permutation Cipher 4. Introduction to Cryptanalysis 5. Cryptanalysis of the Shift Cipher 6. Remarks on Letter Distribution of the English Language 1 Review: The Vigen`ereCipher Last time, we talked about The Vigen`ere cipher, and we said that it is the first polyalphabetic cryptosystem that we are encountering in this course. A polyalphabetic cryptosystem is a cryptosystem where multiple alphabetic characters are encrypted at a time. In other words, each plaintext element is equivalent to m alphabetic characters. The idea behind this cryptosystem is to use a vector of m keys, i.e., K = (K1;K2; ::; Km). m m P = C = K = (Z26) where (Z26) is an m-tuple: y = eK (x1; x2; ::; xm) = (x1 + K1; x2 + K2; ::; xm + Km) mod 26; (1) dK (y1; y2; ::; ym) = (y1 − K1; y2 − K2; ::; ym − Km) mod 26: (2) Note: The difference between the Vigen`erecipher and the shift, substitution, and affine ciphers is that in the Vigen`erecipher each alphabetic character is not uniquely mapped to another alphabetic character. Example Let the plaintext be vector, and let m = 4; K = (2; 4; 6; 7). From the correspondence table we have x = (21; 4; 2; 19; 14; 17), and the cipher is shown in Table 1. PLAINTEXT: 21 4 2 19 14 17 KEY: 2 4 6 7 2 4 CIPHER: 23 8 8 0 16 21 XIIA QV To decrypt, we use the same keyword, but modulo subtraction is performed instead of modulo addition.
    [Show full text]
  • A Comparative Study of Classical Substitution Ciphers
    International Journal of Engineering Research & Technology (IJERT) ISSN: 2278-0181 Vol. 3 Issue 9, September- 2014 A Comparative Study of Classical Substitution Ciphers Anjlee Verma Navjot Kaur School of Computer Engineering Department of CSE/IT Lovely Professional University CGC Jhanjeri Phagwara, Punjab Mohali, Punjab Abstract— with the rapid development in the technology, the Cryptography (also known as cryptology) is a study and call for security has also raised its pitch and Information practice of hiding information. It is the technique in which a Security has become an important issue during last decades. piece of raw data is taken, scrambled into gibberish Cryptography; emerged as a solution; has reserved its mathematically, yet allowing for decrypting back into the unvanquishable place in the field of security. The principle original plain data. In other words, we can say that it is an art objective guiding the design of any cryptographic algorithm of manipulating messages so that they become more secure. It must be the security it provides against unauthorized attack. consists of processes of encoding and decoding. But, the performance and cost implementation of the algorithms Cryptography includes the techniques for creating various are also those factors which we cannot ignore. So, there is systems, procedures or algorithms for secret writing. Whereas always a deemed necessity to analyze, standardize and represent cryptanalysis consists of the techniques of breaking them.[2] these algorithms to the future researchers and struggling
    [Show full text]
  • Traditional Symmetric-Key Ciphers
    Traditional Symmetric-Key Ciphers A Biswas, IT, BESU Shibpur General idea of symmetric-key cipher The original message from Alice to Bob is called plaintext; the message that is sent through the channel is called the ciphertext. To create the ciphertext from the plaintext, Alice uses an encryption algorithm and a shared secret key. To create the plaintext from ciphertext, Bob uses a decryption algorithm and the same secret key. If P is the plaintext, C is the ciphertext, and K is the key, We assume that Bob creates P1; we prove that P1 = P: Locking and unlocking with the same key Kerckhoff’s Principle Based on Kerckhoff’s principle, one should always assume that the adversary, Eve, knows the encryption/decryption algorithm. The resistance of the cipher to attack must be based only on the secrecy of the key. Cryptanalysis As cryptography is the science and art of creating secret codes, cryptanalysis is the science and art of breaking those codes. Cryptanalysis attacks Ciphertext-Only Attack Ciphertext-only attack Known-Plaintext Attack Known-plaintext attack Chosen-Plaintext Attack Chosen-plaintext attack Chosen-Ciphertext Attack Chosen-ciphertext attack SUBSTITUTION CIPHERS A substitution cipher replaces one symbol with another. Substitution ciphers can be categorized as either monoalphabetic ciphers or polyalphabetic ciphers. Note A substitution cipher replaces one symbol with another. 1 Monoalphabetic Ciphres 2 Polyalphabetic Ciphers Monoalphabetic Ciphers Note In monoalphabetic substitution, the relationship between a symbol in the plaintext to a symbol in the ciphertext is always one-to-one. Example The following shows a plaintext and its corresponding ciphertext.
    [Show full text]