Fixed compilation errors.

This commit is contained in:
Hykem 2014-10-01 15:15:04 +01:00
parent 4978af50e4
commit faeedf1355
3 changed files with 5 additions and 5 deletions

View file

@ -26,7 +26,7 @@ u64 swap64(u64 i)
((i & 0x00ff000000000000) >> 40) | ((i & 0xff00000000000000) >> 56);
}
void xor(unsigned char *dest, unsigned char *src1, unsigned char *src2, int size)
void xor_key(unsigned char *dest, unsigned char *src1, unsigned char *src2, int size)
{
int i;
for(i = 0; i < size; i++)