Simply encrypt a string in C

前端 未结 7 683
故里飘歌
故里飘歌 2020-12-16 04:47

I\'m trying to encrypt a query string on a game I\'m making when opening a url. It doesn\'t have to be complicated, in fact since I\'m working from a game engine it needs to

相关标签:
7条回答
  • 2020-12-16 05:25

    SonOfRa already proposed the right answer.

    But if you're intent on using something terrible to obscure a string without actually encrypting it, the GNU C library provides a memfrob(3) that is already-written and easily reversible.

    0 讨论(0)
提交回复
热议问题