How would I reverse engineer a cryptographic algorithm?

后端 未结 11 1166
面向向阳花
面向向阳花 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:22

    That is kind of impossible, you'd fail at the XOR decryption if you don't have any knowledge about what key was used.

    In a general case, it is even more impossible (if that is possible :)) to gauge what an encrypted string might mean.

提交回复
热议问题