Add more decryption methods
See original GitHub issueHere is a list of all the ciphers Ciphey plans to support. Pick one and implement it please 😃 ❤️ Here’s how to incorporate it into Ciphey: https://github.com/Ciphey/Ciphey/wiki/Adding-your-own-ciphers Full list of implemented ciphers: https://github.com/Ciphey/Ciphey/wiki/Supported-Ciphers
Easiest
- First letter of every word, first letter of every line, 2nd letter of every word etc (#336)
- T9 phone keypad cipher (like the old Nokia phones) (#422)
Ciphers / Encodings
- Playfair cipher (#345)
- Badly implemented RSA
- Monoalphabetic Substitution Cipher (#347)
- Vigenère Autokey Cipher (#348)
- Beaufort Cipher (#349)
- Beaufort Autokey Cipher
- Columnar Transposition Cipher (#350)
- Railfence Cipher (#351)
- Double Transposition (#352)
Done
- Base8
- Base58 https://github.com/keis/base58 (both Bitcoin & Ripple alphabets)
- Base85
- Base85 ASCII version (Python library for this)
- Base 62 with alphabet
0-9A-Za-z
** (Most link shorteners use this alphabet, and it’s the default in CyberChef + the online Base62 decoders) - Vigenere Cipher
- Atbash Cipher
- Base91
- If a text only contains 2 letters X and Y, we may turn it into Binary and see if that works. similarly we could do the same for hex and octal etc
- Minecraft enchanting table (see https://github.com/Ciphey/Ciphey/issues/63#issuecomment-669145486 )
- XOR
- Base69 (#335)
- DNA codons (ATCG DNA letters) (#354)
- Baudot ITA2 (#355)
- SMS Multi-tap (#340)
- DTMF frequency (#424)
- A1Z26 (#344)
- Prisoner’s tap code (#337)
- Brainfuck (#353)
- ROT47 (#342)
- ASCII shift (#343)
- UUencode (#433)
- Affine (#346)
- Baconian cipher (#432)
- Soundex (#412)
- Braille (#439)
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:20 (15 by maintainers)
Top Results From Across the Web
Encryption, decryption, and cracking (article) | Khan Academy
Decryption : recovering the original data from scrambled data by using the secret key. Code cracking: uncovering the original data without knowing the...
Read more >Decryption methods - IBM
The data encryption algorithms are the algorithms that are used to encrypt and decrypt data. This algorithm type is used for encrypting data...
Read more >7 Encryption Methods To Shield Sensitive Data from Prying Eyes
Secure your company's sensitive information and improve your data protection strategy using these encryption methods.
Read more >protocol design - One Encryption, Many Decryption Keys
Add extra data to the key that is not needed for decryption ... If you do this in a smart way, you would...
Read more >What Is Data Encryption: Algorithms, Methods and Techniques ...
Once the ciphertext reaches the intended receiver, he/she can use a decryption key to convert the ciphertext back to its original readable ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The Standard Galactic Alphabet (Minecraft enchanting table language) is just a substitution cipher, where each letter in the Latin alphabet has been substituted with a different symbol.
For example,
reads as
when translated. I assume you could map each SGA symbol to its Latin counterpart in a dictionary and just iterate through that?
@Cyclic3 sent this to me: