Giter Site home page Giter Site logo

cryptopals's Introduction

Cryptopals

Challenges from Cryptopals.com in Python

Set 1 - Basics

  • 1. Hex to base-64 conversion:

  • 2. Fixed Xor operation:

  • Implentation of a equal-length XOR-function. Takes two equal length buffers as input and outputs their XOR result.

  • 3. Single Byte XOR Cipher: Code to decrypt and find the key of a Single-byte XOR cipher using statistics.

  • First we infer the probabilities of the occurence of a specific letter in the english language in a dictionary (not divided by 100 yet) This is used to compute a fitting quotient by counting the occurence of english letters in a given string (in ASCII)

  • To break the single-byte XOR cipher, we then compute this fitting quotient of the encrypted message XOR'ed with all the possible characters in the ASCII table (the extended one 256 possible characters)

  • The XOR'ed string with the minimum frequency is chosen to be the plaintext and the key is the character XOR'ed against the corresponding ciphertext

  • 4. Detect Single Character XOR: Code to decrypt the txt-file (Basics/listOfPossibleCiphers.txt)

  • First we read the file and convert the hex strings to bytes

  • The code from (3) is then used to decrypt the strings

  • 5. Implement Repeating-Key XOR: Code to encrypt plaintext by repeatedly XOR'ing a key with blocks of bytes. Will encrypt "Burning 'em, if you ain't quick and nimble / I go crazy when I hear a cymbal" with the key "ICE" to produce "0b3637272a2b2e63622c2e69692a23693a2a3c6324202d623d63343c2a26226324272765272 / a282b2f20430a652e2c652a3124333a653e2b2027630c692b20283165286326302e27282f"

  • We XOR the first byte of the key with the first byte in the plaintext, then the second of the key with the second, etc. Finally we have used all characters in the key (k characters) and we start over by XOR'ing the first byte of the key to the (k+1)'th byte of the plaintext, and the process continues this way.

  • 6. Breaking Repeating-Key XOR: Aimed to break the cipher that has encrypted the strings in (Basics/Challenge6.txt).

  • First we infer a function to compute the Hamming distance of two strings (the number of positions in whichs their bits differ)

  • We check in a range of possible key sizes (size_min, size_max) for the Hamming distance between the first key-size worth of bytes with the second key-size worth of bytes and divide this measure by the key-size. The minimal value of this over all checked key-sizes is chosen as the key-size (could choose multiple and test for further improvement)

  • The ciphertext is then broken into blocks of size key-size and then transposed such that we get a list of key-size elements with lists of the first character of each block, the second character, etc.

  • We then solve each block as if it was a single character XOR. If one chooses to use multiple candidates for key-sizes, one can then add a step that chooses which plaintext is the best solution by comparing the histogram of the different candidate keys.

  • 7. AES in ECB Mode: Simple decryption of (Basics/AESCipher.txt) in ECB mode (128-bit) by knowing the key of the cipher "YELLOW SUBMARINE".

  • 8. Detect AES in ECB Mode: Code to detect if bytes have been encrypted with AES in ECB mode (128-bit).

  • We count the repetition of blocks in the ciphertext. AES in ECB mode is deterministic so the same input yields the same ciphertext.

  • If a block occurs more than once we return the bool True and False otherwise.

  • We test it with (Basics/DetectECB.txt)

Set 2 - Block Crypto (in progress)

  • 9. Implement PKCS7 Padding: Given a block size, we add padding to a string.

  • If the length of the string is a multiple of the block size, we add a block of padding.

  • If not we add padding to fill the last block.

  • Implemented a PKCS7 stripping function to remove padding.

  • 10. Implement CBC Mode: Code to both encrypt and decrypt an AES-ECB ciphertext in CBC mode.

  • Infer a function to split our plaintext or ciphertext into blocks (or chunks) with block size 16.

  • We XOR the plaintext chunks with the previous ciphertext chunks (first block is XOR'ed against an initialization vector (IV)) then AES-ECB encrypt the chunks.

  • The decryption process first AES-ECB decrypts the ciphertext chunks and afterwards does the reverse process with the XOR'ing.

  • Padded is added and stripped when needed.

  • 11. ECB/CBC Oracle: An Oracle which encrypts plaintext in ECB or CBC with 50/50 probability. Key is randomly generated through the operating system.

  • 12. Byte-at-a-time ECB Decryption: Code to break the Oracle when it chooses ECB mode given a fixed random key (globally assigned) and appending a base-64 encoded string (presumed to the unknown) to the plaintext.

  • Infered a function to decide the block size of the cipher (it is known to be 16, but generally it can be 16, 24 or 32) and a function to decide if the ciphertext is ECB encrypted.

  • We feed the character "B" to the oracle repeatedly, first "B", then "BB", etc.

  • We then change the last character of the string to the next character and repeat until we guess correctly. We then target the next byte, then the next block and finally the whole ciphertext has been decrypted.

cryptopals's People

Contributors

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