Skip to content

Implementation of CBC decryption using only ECB decryption

Notifications You must be signed in to change notification settings

orbarilan4/cbc-decryption

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e8d73ba · Jul 9, 2020

History

4 Commits
Jul 1, 2020
Jul 9, 2020
Jul 7, 2020
Jul 4, 2020
Jul 4, 2020

Repository files navigation

CBC Decryption

Contains two main things:

  • cbc_custom_decrypt(key, n, cipher) function is implementation of CBC decryption by using only ECB decryption.
  • Suppose that bit number j of block ci of the ciphertext got flipped (namely, if the original value of the bit was 0 then it changed to 1, and if the original value of the bit was 1 then it changed to 0). The decryption process will decrypt all blocks correctly, except for blocks i and i + 1. The decryption of block i will be completely random, and the decryption of block i + 1 will be correct, except for bit j in this block that will be flipped. cbc_flip_fix(key, n, cipher) function gets the original value of the block whose encryption was completely corrupted (by definition)

About

Implementation of CBC decryption using only ECB decryption

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages