Giter VIP home page Giter VIP logo

playfair's Introduction

import numpy as np
import string
from collections import OrderedDict

Playfair Cypher

In this notebook, the encoding and decoding techniques of the Playfair Cypher will be utilized to implement it. The end result of this notebook should be a set of functions that can encode and decode messages with a given key under the Playfair Cypher.

def remove_spaces(str):
    ### This is a function that will remove all of the spaces from a string. 
    return str.replace(' ', '').lower()
def remove_spaces_tests():
    ### This is a small number of tests to ensure that the removing of spaces works properly
    assert(remove_spaces(" ") == "")
    assert(remove_spaces("test test") == "testtest")
    assert(remove_spaces("test test test") == "testtesttest")
    assert(remove_spaces(" test ") == "test")
    assert(remove_spaces(" A B c D") == "abcd")
    
    print("All Tests Passed!")
remove_spaces_tests()
All Tests Passed!

Since spaces aren't relevent to the cyper, we should remove them from the input. The above code is doing this, along with some tests. The Playfair Cyper also only works in pairs, meaning that if the length of a given string is odd, the Playfair Cypher mandates that we add an 'X' to it, in order for the cyper to work. In order to do this, we will introduce a variable called "is_odd". If this variable is true, we will add an "x" to the end of the string and remove the last letter of the deciphered test or vice versa.

is_odd = False
def check_length(str):
    global is_odd
    is_odd = (len(str) % 2 == 1)
    if is_odd:
        return str + 'x'
    return str
def check_length_test():
    global is_odd
    assert(is_odd == False)
    assert(check_length("j") == "jx")
    assert(is_odd == True)
    is_odd = False
    assert(check_length("test") == "test")
    assert(is_odd == False)
    test_str = check_length(remove_spaces("t e s t 1 2 3"))
    assert(test_str == "test123x")
    assert(is_odd == True)
    print("All Tests Passed!")
    
check_length_test()
All Tests Passed!

The key also needs to not have repeats, so let's implement a function that removes the repeats from a string.

def remove_repeats(str):
    str = str.replace("j", "i")
    return "".join(OrderedDict.fromkeys(str))
def remove_repeats_test():
    assert(remove_repeats("test") == "tes")
    print("All Tests Passed!")
remove_repeats_test()
All Tests Passed!

Now that all of our preprocessing tools have been implemented, it's time to begin implementing the encrypt function. Before that, however, it's necessary to set up our key. I'll implement this as a list for both speed and ease of use.

key_array = []
def define_key(key):
    key = remove_repeats(remove_spaces(key))
    global key_array
    key_array = list(key)
    
    for i in list(string.ascii_lowercase):
        if i not in key and i != ('j'):
            key_array += i
    return key_array
def define_key_tests():
    test1 = define_key(" te s s t a")
    assert(len(test1) == 25)
    test2 = define_key("a b c d e f g h i j k l m n o p q r s t u v")
    assert(len(test2) == 25)
    print("All Tests Passed!")
define_key_tests()
All Tests Passed!

We, now, need to split the code into pairs, as that's how the code is interpreted. The following code is a list comprehension that splits a string into a list of pairs.

def split_string(str):
    ### "abcd = [(ab), (cd)]
    return [''.join(t) for t in zip(*[iter(str)]*2)]
def split_string_test():
    assert(split_string("ab") == ["ab"])
    assert(split_string("abcd") == ["ab", "cd"])
    print("All Tests Passed!")
split_string_test()
All Tests Passed!

Now that we have a key implemented, our encryption and decryption function will essentially be math on the key list. Let's start with encryption.

def encrypt(key, code): 
    ### There are three cases that we need to worry about for the encrypt function. 
    ### 1) If the two letters in the pair that we are looking at are in the same column
    ### 2) If the two letters in the pair that we are looking at are in the same row
    ### 3) If the two letters in the pair that we are looking at are in different rows/columns and we need to draw a box
    key = define_key(key)
    code = check_length(remove_repeats(code))
    code = split_string(code)
    output_string = ""
    for pairs in code:
        first = pairs[0]
        second = pairs[1]
        first_counter = 1
        second_counter = 1
        for i in range(len(key) - 1):
            if key[i] == first:
                first_counter += i
            elif key[i] == second:
                second_counter += i
        diff = abs(first_counter - second_counter)
        if diff % 5 == 0:
            if first_counter + 5 <= 25:
                output_string += key[first_counter + 5]
            else:
                output_string += key[first_counter % 5]
            if second_counter + 5 <= 25:
                output_string += key[second_counter + 5]
            else:
                output_string += key[second_counter % 5]
            continue
        if diff < 5:
            if (first_counter + 1) >= 5:
                ouput_string += key[first_counter - 4]
            else:
                output_string += key[first_counter + 1]
            if (second_counter + 1) >= 5:
                ouput_string += key[second_counter - 4]
            else:
                second_string += key[second_counter + 1]
        else:
            bigger = max(first_counter, second_counter)
            smaller = min(first_counter, second_counter)
            output_string += key[bigger - diff]
            output_string += keuy[bigger + diff]
                
    return output_string

    
def encrypt_tests():
    
encrypt_tests()

playfair's People

Contributors

ameetr 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.