Keyed Substitution is a A monoalphabetic substitution cipher, where a keyword placed into beginning of the alphabet, and any duplicated letters are removed.
✅ Perfect Decoding
✅ Uppercase letters (A-Z
)
✅ Lowercase letters (a-z
)
❌ Numbers (0-9
)
❌ Symbols (!@#$
)
❌ Emojis (😍🤬👩🏾💻
)
Numbers, Symbols, and Emojis
Numbers, symbols, and emoji are outputted as-is by this cipher.
What is “Perfect Decoding”?
Perfect Decoding is when the decoded text exactly matches the text that was encoded.
View Keyed Substitution on Github
Given a key
, create a new alphabet with that key in front.
For example, with a key of private
you’ll see the cipher alphabet below, in comparison to the standard English alphabet.
key = 'private'
cipherAlphabet = privatebcdfghjklmnoqsuwxyz
standardAlphabet = abcdefghijklmnopqrstuvwxyz
cipherAlpha.indexOf(letter)
standardAlphabet.indexOf(letter)
Based on the current settings for Keyed Substitution:
key = lorem
The computed cipher alphabet is:
loremabcdfghijknpqstuvwxyz
Hello World!
ABCDEFGHIJKLMNOPQRSTUVWXYZ
abcdefghijklmnopqrstuvwxyz
0123456789
!@#$
✨🦄✨
Cmhhk Wkqhe!
LOREMABCDFGHIJKNPQSTUVWXYZ
loremabcdfghijknpqstuvwxyz
0123456789
!@#$
✨🦄✨
Hello World!
ABCDEFGHIJKLMNOPQRSTUVWXYZ
abcdefghijklmnopqrstuvwxyz
0123456789
!@#$
✨🦄✨