Stack Corruption,不知道导致它的原因

时间:2016-06-30 01:49:23

标签: c++ corruption

所以,为了做一些事情,我致力于在C ++中实现AES算法。它编译和链接非常好。我运行它的那一刻,VS2015报告堆栈在变量" temp"周围被破坏。它向我展示了它发生的确切位置,但我在该代码中看不到任何时髦的东西:

void rotWord(Word &it)
{
    Word temp;

    for (int i = 0; i < 4; i++)
        temp[(i - 1) % 4] = it[i];
    for (int i = 0; i < 4; i++)
        it[i] = temp[i];
}

顺便说一句,Word被声明为typedef Byte Word[4],其中Byte只是一个类。知道什么导致堆栈损坏吗?如果需要,我可以发布完整的来源。

2 个答案:

答案 0 :(得分:4)

for (int i = 0; i < 4; i++)
    temp[(i - 1) % 4] = it[i];

猜猜(0-1)%4是什么?

它-1。

在循环的第一次迭代中,i为0,这将评估为:

temp[-1]=it[0];

将其更改为:

for (int i = 0; i < 4; i++)
    temp[(i + 3) % 4] = it[i];

答案 1 :(得分:1)

temp[(i - 1) % 4] = it[i];

i = 0

temp[((0 - 1) % 4]
temp[(-1) % 4]
temp[-1]

这是未定义的行为。