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

Function xorBlocks

libcppcryptfs/crypt/eme.cpp:85–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85static void xorBlocks(BYTE* out, const BYTE* in1, const BYTE* in2, int len) {
86
87 for (int i = 0; i < len; i++) {
88 out[i] = in1[i] ^ in2[i];
89 }
90}
91
92static void AesEncrypt(BYTE* dst, const BYTE* src, int len, const EmeCryptContext *eme_context)
93{

Callers 1

EmeTransformFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected