Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 551 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 551 Bytes

Ciphers

Caesar Cipher

Written in C#
How the cipher works:

  • lowercase letters -> lowercase letters
  • capital letters -> capital letters
  • digits -> digits
  • space -> space
  • other symbols -> other symbols

Transposition Cipher

Written in JavaScript
Testing code also in JavaScript

Affine Cipher

Written in C#

  • Multiplicative cipher
    Multiplicative cipher works only for letters.

  • Caesar cipher
    Caesar cipher code taken from the initial caesar cipher and modified a bit to suit the needs of this cipher.