MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / aes256_xor

Function aes256_xor

libcppcryptfs/crypt/aes-siv/aes256-common.cpp:4–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2#include "aes256-common.h"
3
4void aes256_xor(uint8_t *buf, const uint8_t *xorval, const size_t len)
5{
6 for (size_t i = 0; i < len; i++)
7 buf[i] ^= xorval[i];
8}
9
10void aes256_bitshift_left(uint8_t *buf, const size_t len)
11{

Callers 5

aes256_siv_dblFunction · 0.85
aes256_siv_s2vFunction · 0.85
aes256_ctrFunction · 0.85
aes256_cmacFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected