1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
3 * LibTomCrypt is a library that provides various cryptographic
4 * algorithms in a highly modular and flexible manner.
6 * The library is free for all purposes without any express
11 @file ocb3_int_xor_blocks.c
12 OCB implementation, INTERNAL ONLY helper, by Karel Miko
19 Compute xor for two blocks of bytes 'out = block_a XOR block_b' (internal function)
20 @param out The block of bytes (output)
21 @param block_a The block of bytes (input)
22 @param block_b The block of bytes (input)
23 @param block_len The size of block_a, block_b, out
25 void ocb3_int_xor_blocks(unsigned char *out, const unsigned char *block_a, const unsigned char *block_b, unsigned long block_len)
29 for (x = 0; x < (int)block_len; x++) out[x] ^= block_b[x];
32 for (x = 0; x < (int)block_len; x++) out[x] = block_a[x] ^ block_b[x];
38 /* ref: $Format:%D$ */
39 /* git commit: $Format:%H$ */
40 /* commit time: $Format:%ai$ */