gpt4 book ai didi

c++ - 8192位异或加密?

转载 作者:太空宇宙 更新时间:2023-11-04 06:32:52 24 4
gpt4 key购买 nike

<分区>

如果我有一个包含 1024 个字符的字符串和一个简单的异或算法,它是否仍然很容易破解?

const unsigned char Key[1024] = {0x.........};

void EncodeBuffer(unsigned char Buffer[],unsigned int Size) {
unsigned int i = 0,c = 0;
while (i < Size) {
while(c < 1024)
Buffer[i] ^= Key[c++];
i++;
c = 0;
}
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com