Jack Jackson
Jack Jackson

Reputation: 87

How to decipher a text?

I am given a text:

Xli wigsrh qiwweki aew irgvctxih ywmrk xli pmriev gshi amxl e xlvii erh o wmb.

I need to dechiper it. How to decipher a text without knowing which method was used to encode it? I just need some hints.

Thanks in advance.

Upvotes: 0

Views: 5321

Answers (2)

Akshansh Bhandari
Akshansh Bhandari

Reputation: 1

Deciphering is not a big deal. You just have to check for every value of k, i.e. 25 as there are total 26 letters.

After deciphering it gives "The second message was encrypted using the linear code with a three and k six", and the K used was 4(k=4).

Upvotes: 0

CosmicGiant
CosmicGiant

Reputation: 6439

Deciphering works by achieving the reversal of the encryption's (ciphering's) effect:

  • Through brute force, basically meaning "trial and error", either by hand or with automated or semi-automated tools; And usually including finding out what type of cipher you are dealing with, to make deciphering easier.

or

  • Through obtaining and reverse-engineering the encryption or decryption code, which is hardly ever obtainable unless the application is 100% local; Not to mention doing so is almost always completely illegal.

This applies to deciphering all types of encryption, but please notice that this considers ciphering only, and that ciphering is almost never applied alone: Things like hashing, message-digesting and obfuscation exist and are widely used along with it.


As for your specific case, it is as @nickhar mentioned: A substitution-cipher, meaning the alphabet's element's positions were rotated and/or swapped.

I won't lie to you: This is a very weak cipher that can be deciphered by hand with a little bit of word-letter-counting and guesstimation, and as such, there are plenty of automated tools out there that will decipher it with the press of a button.

But then again, I wont lie to you: If you want to really understand the stuff, get your head down, your hands dirty, and do it (decipher) yourself.

If you study and learn, you will be answering this type of question in no time! =D

Upvotes: 1

Related Questions