question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Add more decryption methods

See original GitHub issue

Here 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:open
  • Created 3 years ago
  • Reactions:2
  • Comments:20 (15 by maintainers)

github_iconTop GitHub Comments

4reactions
franc-istcommented, Aug 5, 2020

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,

Iℸ ̣  ╎ᓭ ⍑ᔑ∷↸ ℸ ̣ 𝙹 ᒷ∷ᔑᓭᒷ ʖꖎ⚍ᒷ 𝙹∷ ∷ᒷ↸ ╎リꖌ.

reads as

It is hard to erase blue or red ink.

when translated. I assume you could map each SGA symbol to its Latin counterpart in a dictionary and just iterate through that?

2reactions
bee-sancommented, Jun 11, 2020

@Cyclic3 sent this to me:

["alpha", "bravo", "charlie", "delta", "echo", "foxtrot", "golf", "hotel", "india", "juliet", "kilo", "lima", "mike", "november", "oscar", "papa", "quebec", "romeo", "sierra", "tango", "uniform", "victor", "xray", "yankee", "zulu"]
Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found