C++ XOR 密钥太长?

发布于 2024-10-21 03:11:20 字数 157 浏览 4 评论 0原文

我有一个 XOR 密钥 (dfficvvifvdfher89429338jwesjcnasidneufhrfdfha23p3rwe23323ncdnhj),但它似乎太长了,即使对于long long 格式也是如此。

如何使用此键并摆脱“错误 C2177:常量太大”?

I have a XOR key (dfficvvifvdfher89429338jwesjcnasidneufhrfdfha23p3rwe23323ncdnhj) but it seems to be way too long, even for long long format.

How can I use this key and get rid of "error C2177: constant too big"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小糖芽 2024-10-28 03:11:20

将每个值放入字符数组中的不同字符中,即:

const char xor_key[] = "dffic...";

然后一次对键执行异或多个字符,然后在下一个字符处再次使用该键。

Put each value into a distinct char in a char array, i.e.:

const char xor_key[] = "dffic...";

You then XOR however-many characters against the key at a time, then use the key again at the next character after that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文