templexxx/xorsimd

Decode algorithm?

zwhe99 opened this issue · 2 comments

Hi~

I can't find the decoding algorithm in the code, how should I perform the decode?

Hi~

I can't find the decoding algorithm in the code, how should I perform the decode?

For XOR, encode is as same as decode

Encode:

A ⊕ B = C

Decode:

B ⊕ C = A

A ⊕ C = B

⊕ is XOR

Hi~
I can't find the decoding algorithm in the code, how should I perform the decode?

For XOR, encode is as same as decode

Encode:

A ⊕ B = C

Decode:

B ⊕ C = A

A ⊕ C = B

⊕ is XOR

I get it. Thanks!