├── CRYPTOGRAPHY_project.ipynb ├── Project_code_pdf.html ├── Project_code_pdf.pdf └── README.md /CRYPTOGRAPHY_project.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "nbformat": 4, 3 | "nbformat_minor": 0, 4 | "metadata": { 5 | "colab": { 6 | "name": "CRYPTOGRAPHY_project.ipynb", 7 | "provenance": [] 8 | }, 9 | "kernelspec": { 10 | "name": "python3", 11 | "display_name": "Python 3" 12 | } 13 | }, 14 | "cells": [ 15 | { 16 | "cell_type": "markdown", 17 | "metadata": { 18 | "id": "KD2o2yWaNIH0" 19 | }, 20 | "source": [ 21 | "**COMMUINCATION** SECURITY THROUGH VARIOUS LAYERS OF CIPHERS" 22 | ] 23 | }, 24 | { 25 | "cell_type": "code", 26 | "metadata": { 27 | "colab": { 28 | "base_uri": "https://localhost:8080/", 29 | "height": 53 30 | }, 31 | "id": "pfyM47ZnND6V", 32 | "outputId": "acb9a083-b521-49d0-d289-6195da2789e8" 33 | }, 34 | "source": [ 35 | "def processing(mode, text, key):\r\n", 36 | " key_ints = [ord(i) for i in key]\r\n", 37 | " text_ints = [ord(i) for i in text]\r\n", 38 | " finished_text = \"\"\r\n", 39 | " for i in range(len(text_ints)):\r\n", 40 | " adder = key_ints[i % len(key)]\r\n", 41 | " if mode == 1:\r\n", 42 | " adder *= -1\r\n", 43 | " char = (text_ints[i] - 32 + adder) % 95\r\n", 44 | " finished_text += chr(char + 32)\r\n", 45 | " return finished_text\r\n", 46 | "\r\n", 47 | "\r\n", 48 | "\r\n", 49 | "\"\"\" WAIT WAIT !!!\r\n", 50 | "\r\n", 51 | "CODE is longer !\r\n", 52 | "It comprise of more than 200+ line of code \r\n", 53 | "\r\n", 54 | "For full code and report, Mail me now at vatshayan007@gmail.com\r\n", 55 | "\"\"\"" 56 | ], 57 | "execution_count": 7, 58 | "outputs": [ 59 | { 60 | "output_type": "execute_result", 61 | "data": { 62 | "application/vnd.google.colaboratory.intrinsic+json": { 63 | "type": "string" 64 | }, 65 | "text/plain": [ 66 | "' WAIT WAIT !!!\\n\\nCODE is longer !\\nIt comprise of more than 200+ line of code \\n\\nFor full code and report, Mail me now at vatshayan007@gmail.com\\n'" 67 | ] 68 | }, 69 | "metadata": { 70 | "tags": [] 71 | }, 72 | "execution_count": 7 73 | } 74 | ] 75 | }, 76 | { 77 | "cell_type": "markdown", 78 | "metadata": { 79 | "id": "gRF37pVvONdG" 80 | }, 81 | "source": [ 82 | "\"\"\" WAIT WAIT !!!\r\n", 83 | "\r\n", 84 | "CODE is longer !\r\n", 85 | "It comprise of more than 200+ line of code \r\n", 86 | "\r\n", 87 | "For full code and report, Mail me now at vatshayan007@gmail.com\r\n", 88 | "\"\"\"" 89 | ] 90 | }, 91 | { 92 | "cell_type": "code", 93 | "metadata": { 94 | "id": "LPwXAeVCOKkB" 95 | }, 96 | "source": [ 97 | "" 98 | ], 99 | "execution_count": null, 100 | "outputs": [] 101 | } 102 | ] 103 | } -------------------------------------------------------------------------------- /Project_code_pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vatshayan/Cryptography-Communication-System/fca710f24c463a7c78df75e0b8e720480330f133/Project_code_pdf.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Cryptography-Project-for-Secure-Communication 2 | B.tech Final Year College Project for Secure Message Communication though Cryptography Algorithm 3 | 4 | ![maxresdefault](https://user-images.githubusercontent.com/28294942/108817602-25a9b300-75de-11eb-9e44-52aee480a797.jpg) 5 | 6 | Communication mad secure by using 3 Layers of Different complex Ciphers. 7 | 8 | Triple Layering of message for security are as follows- 9 | 10 | Step 1: Messgae will be **reverse.** 11 | 12 | Step 2: Resultant reverse Output will go through **vigenere cipher** 13 | 14 | Step 3: The New resultant output from vigenere cipher will be encrypted through **Morse cipher.** 15 | 16 | Step 4: The Output will be **very complex and unreadable.** 17 | 18 | 19 | I have explain point to point in Description(Report) 20 | 21 | I will send you- 22 | - Project Code 23 | - Project report 24 | - Project Synopsis 25 | - Project Research papers 26 | 27 | This Project is based on Research papers: 28 | 29 | This Project is new and Unique. 30 | 31 | Python Programming is used for developing this Project. 32 | 33 | Thank you. 34 | ******************************************************************************************************************************************************************** 35 | 36 | 37 | ## Hi there 👋 38 | You Can use this Beautiful Project for your college Project and get good marks too. 39 | 40 | Email me Now **vatshayan007@gmail.com** to get this Project Code, PPT, Report, Synopsis, Video Presentation and Research paper of this Project. 41 | 42 | 💌 Feel free to contact me for any kind of help on projects related to Machine Learning, Data Science, Cryptography, DIP, Web technologies and Cloud. 43 | 44 | ### HOW TO RUN THE PROJECT- 45 | ⚡ Email me at **vatshayan007@gmail.com** to get a detailed Guide report to run the project with source Code. 46 | 47 | ### INTERNSHIP 48 | 🌟 Internship oppurtunity for everyone - https://github.com/Vatshayan/INTERNSHIP 49 | 50 | ### HOW TO REACH ME 51 | 52 | 💬 Gmail: **vatshayan007@gmail.com** 53 | 54 | Happy to Help you😄 55 | 56 | 57 | --------------------------------------------------------------------------------