C++ XOR 密钥太长?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将每个值放入字符数组中的不同字符中,即:
然后一次对键执行异或多个字符,然后在下一个字符处再次使用该键。
Put each value into a distinct char in a char array, i.e.:
You then XOR however-many characters against the key at a time, then use the key again at the next character after that.