Git Product home page Git Product logo

cipher's Introduction

Cipher

Continuous assessment for Week 1 - Classical Encryption/Substitution Cipher

  1. Select a Wikipedia article of minimum 10,000 words as your plaintext P.
  2. Decide on a simple mono-alphabetic substitution cipher for the alphabet of English characters A to Z (be case agnostic) and use it as your encryption scheme E.
  3. Compute your ciphertext C as C = E(P) by encrypting only the alphabetic characters (leaving all other characters, symbols, etc as is)
  4. Compute the character frequency graph for your ciphertext C and draw it as a bar chart with x-axis in alphabetic order.
  5. Identify the 5 ciphertext characters with the highest frequency and speculate on the mapping to the plaintext characters in the alphabet.
  6. Prepare a partial decryption of the ciphertext with only the identified top-5 characters replaced with their corresponding plaintext guesses.

Code

The code for encrypting

   def Encrypt(v, Original, Key):
    Encypted_String = ""
    for i in v:
        if i in Original:
            Encypted_String = Encypted_String + Key[Original.find(i)]
        else:
            Encypted_String = Encypted_String +i 
            
    return Encypted_String

The code for counting occurrence of characters

def CountCharacter(String):
    Original = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
    letter_dic = {}
    for i in String:
        if i in Original :
            try:
                letter_dic[i] = letter_dic[i] + 1

            except:
                letter_dic[i] =  1
    print (letter_dic)
    return letter_dic

Libraries used

  • numpy
  • matplotlib

cipher's People

Contributors

tharaka27 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.