Friday, November 15, 2019

Vigenère Cipher C Program

Vigenà ¨re Cipher C Program Write a C program to implement a Vigenà ¨re cipher. You may use whatever IDE you wish but the program must be compile with the standard gcc compiler. Your program should give the user the option to either encrypt or decrypt a message. The user should be prompted to enter the passphrase to be entered and the keyword to be used in the cipher. The output should be text printed to stdout. Comments should be used to explain the rationale behind the design of your code. You must also provide a critical analysis as to the robustness of the Vigenà ¨re cipher and provide a recommendation as to whether or not it would be it would be sufficient for use in communications between colleagues within a non-technical environment. C Programme /* Vigener Ciper*/ /*This is the program to Encrypt and to Decrypt the text using the Vigener ciper method*/ /* User has to choose the option either to Encrypt or to Decrypt */ /*The user has to enter the text to be Encrypted and the Key to*/ /*The user has to enter the Encrypted Text and Key to Decrypt the text*/ #include #include main() { int select;// variable declairation int i,j; char passphrase[256]; char keyword[33]; int value; while(1)// infinite loop { printf(n1.Encrypt n);// Display options for the user printf(2.Decryptn);// Encrypt or Decrypt scanf(%d,select);// read the option selected if (select == 1) { printf(Please Enter Message to be encryptedn);//text to be encrypted scanf(%s,passphrase); printf(Please Enter keywordn); // key word scanf(%s,keyword); for(i=0,j=0;i { if(j>=strlen(keyword))// repeat the key word { j=0; } value = (((passphrase[i])-97)+((keyword[j])-97)); //logic (passphrase+key)%26 printf(%c, 97+ (value %26)); // display Encrypted text } } else if (select == 2) { printf(Please Enter Encrypted Message to be Decryptedn); //text to be decrypted scanf(%s,passphrase); printf(Please Enter keyn);//key scanf(%s,keyword); for(i=0,j=0;i { if(j>=strlen(keyword)) { j=0;// repeate the key } value = ((passphrase[i])-96)-(keyword[j]-96); //logic (passphrase-key)%26 if( value { value = value * -1; //make the value positive } printf(%c,97 + (value % 26)); // display dencrypted message } } else printf(Please Choose a correct optionn); } } Introduction The c-program gives the user to choose either to encrypt or to decrypt a message. The user will be prompted to enter the passphrase to be entered and the keyword to be used in the cipher. Vigenere cipher is a form of polyalphabetic substitution cipher which is used for encrypting a plain text. Vigenere cipher can be explained by Caesar cipher method of encryption. In a Caesar cipher encryption method, every letter of the plain text is shifted to some number of places where as in vigenere cipher every letter is shifted with different shift values. Method of Encrypting and Decrypting The logic to obtain the cipher text by vigener cipher is by modular addition of plaintext and repeating keyword. The formula for the encryption is as follows C(i) = T(i) + K(i) (mod 26) C(i) i-th letter of the cipher text T(i) i- th letter of the plain text K(i) i-th letter of keyword (Key word will be repeated at its end) Similarly, the logic to decrypt the message is by modular subtraction of Encrypted text and keyword The formula for the decryption is T(i) = C(i) K(i) (mod 26) C(i) i-th letter of the cipher text T(i) i- th letter of the plain text K(i) i-th letter of keyword (Key word will be repeated at its end) The flow of the c- program is explained by the bellow flowchart Flow chart for the C-program 1. Encryption Flow chart for Decryption Function Robustness of the vigenere cipher When the Vigener cipher was first invented and came into use, it was difficult to break as it uses 26 different cipher alphabet. Vigenere cipher is a polyalphabetic cipher and these kinds of ciphers are difficult to decipher because of their resistance to letter frequency analysis and the same text will not be encrypted with same key each time. In the year 1854 a British cryptographer Charles Babbage found the method to decipher the message. The vulnerability for vigenere cipher is repetition of key When a word in plain text repeats it gives the hint to guess the length of the key Once the length of the key is found it is easy to crack the vigenere cipher The above example illustrates how the vigener cipher can be cracked. The plain text used in this is maths is short for mathematics and keyword used is key. Since the plain text contains the word math twice, cipher text also contains the same encrypted text WERR twice with 15 letters apart. Now it can be guessed that keyword must be a factor of 15. 1,3,5,15 are the factors, if it is 1 then it is simple caesar cipher , key word cant be of 15 letter in this case, between 3 and 5 it can be found easily by closely analyzing the ciphertext. Recommendation Considering the colleges within the non-technical environment Vigenere cipher can be recommended because, As the vigener cipher is difficult to break since it uses 26 different cipher alphabets. The method of encryption is difficult to understand by non-technical people. Without the key, it is difficult to decrypt the message Conclusion Vigener cipher is implemented by using the c-program and the flow of the program is explained with the help of flow chart. Vigener cipher is critically analyzed and its robustness is explained. Recommendations are made on use of this method for the communication between colleges in non-technical environment.      Ã‚   Reference http://crypto.interactive-maths.com/kasiski-analysis-breaking-the-code.html

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.