How would I reverse engineer a cryptographic algorithm?

后端 未结 11 1160
面向向阳花
面向向阳花 2021-01-30 23:52

I wrote an application that encrypts text in this way:

  1. Get the input text

  2. Reverse the text

  3. Convert to hexadecimal

  4. <
11条回答
  •  生来不讨喜
    2021-01-31 00:34

    You would need a larger text base than that and some understanding that the crypt is coming from a particular language/domain. Then based on the frequency of words in that language/domain, one could potentially decipher certain attributes form the text.

    Of course, good ciphers work around this. Only poorly implemented ciphers can be broken easily with this method.

提交回复
热议问题