Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Common Cryptography Ciphers #146

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Common Cryptography Ciphers
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Caesar Cipher:
When using a Caesar cipher you choose a number to shift the entire alphabet by. If you wanted to shift it by 2, A would become C, B would become D, X would become Z, Z would become B, etc. So "Hello World!" would become "Jgnnq Yqtnf!"

Monoalphabetic Cipher:
In a Monoalphabetic Cipher you replace each letter with any letter besides the original letter. So A can be replaced by any letter from B-Z. D could be replaced with Q and R could be replaced with E. It is much more difficult to crack because there are plenty of possiblities.

Polygram Substitution Cipher:
In a Polygram Substation Cipher, instead of replacing the normal alphabet with a scrambled alphabet, the alphabets’ Block is replaced with another block from an alphabet. You could replace HACKTOBER with YKMSFEBQW. Whenever you used HACKTOBER it wold be replaced with YKMSFEBQW, but HACK on its own would be replaced with another set of the block, HACK could replace with PLGH.