Skip to content

Commit

Permalink
docs: Add deterministic info to ciphers
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAlexLichter committed Mar 31, 2018
1 parent 9987b14 commit ca6376f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/ciphers/fractionated-morse.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## Cipher behavior information

* Case sensitive? ❌
* Deterministic? ✓
* Alphabet: `ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 .,:;?-_()'=+/@`
* Characters not in keyAlphabet will be: **omitted** or **throwing an error (default)**

Expand Down
1 change: 1 addition & 0 deletions docs/ciphers/morse.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
## Cipher behavior information

* Case sensitive? ❌
* Deterministic? ✓
* Alphabet: `ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 .,:;?-_()'=+/@`
* Characters not in alphabet will be: **preserved**, **omitted** or **throwing an error (default)**

Expand Down
3 changes: 2 additions & 1 deletion docs/ciphers/pollux.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

## Cipher behavior information

* Case sensitive? ❌
* Case sensitive? ❌ (Keys are case sensitive though)
* Deterministic? ❌
* Alphabet: `ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 .,:;?-_()'=+/@`
* Characters not in Alphabet will be: **throwing an error (default)**

Expand Down
1 change: 1 addition & 0 deletions docs/ciphers/rot.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ the n-th letter/number after it. It's most common variation is *ROT-13* or *Caes
## Cipher behavior information

* Case sensitive? ✓
* Deterministic? ✓
* Alphabet: `ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890`
* Characters not in alphabet will be: **carried over**

Expand Down

0 comments on commit ca6376f

Please sign in to comment.