Gast
#1858616
Hallo zusammen,
ich habe hier ein Codeschnipsel (Befehl result=...), welches ich leider
nicht verstehe. Vielleicht kann ja jemand von euch Licht in das Dunkel
bringen! :-)
Wäre echt super.
Danke & Gruß
Markus
int result;
int offset1, offset2;
unsigned char block[16];
int blockSize;
for(i = 0; i < blockSize; i++)
{
result = (int)*(block + ((offset1 + i) % blockSize)) -
(int)*(block + ((offset2 + i) % blockSize));
}