Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Classical Ciphers

The goal of this project is to build a Java package (src/com/gergoh/encrypters/classical) that can be used to try out several classical encryption methods. Currently src/com/gergoh/Main.java file is for running tests and building new ciphers into the encrypters.classical package.

Current ciphers:

  • Caesar Cipher (encrypt / decrypt)
  • Vigenère Cipher (encrypt / decrypt)
  • Playfair Cipher (encrypt)
  • Rail Fence Cipher (encrypt)
  • Stream Cipher (planned)
  • DES encryption (planned)
  • ROT13 Cipher (planned)

Suggestions are always welcomed!