You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
210 B
13 lines
210 B
3 years ago
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
inline void memxor(uint8_t *r1, uint8_t *r2, uint8_t *res, unsigned int len)
|
||
|
{
|
||
|
unsigned int i;
|
||
|
for (i = 0; i < len; ++i)
|
||
|
{
|
||
|
res[i] = r1[i] ^ r2[i];
|
||
|
}
|
||
|
}
|