mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-29 04:07:49 +02:00
ChiperBlock XOR
This commit is contained in:
parent
9372b33c2c
commit
37c3a9dcf1
2 changed files with 5 additions and 6 deletions
5
aes.h
5
aes.h
|
@ -14,13 +14,14 @@ namespace crypto
|
|||
uint8_t buf[16];
|
||||
uint64_t ll[2];
|
||||
|
||||
void operator^(const ChipherBlock& other) // XOR
|
||||
void operator^=(const ChipherBlock& other) // XOR
|
||||
{
|
||||
#ifdef __x86_64__
|
||||
__asm__
|
||||
(
|
||||
"movups (%[b1]), %%xmm0 \n"
|
||||
"pxor (%[b2]), %%xmm0 \n"
|
||||
"movups (%[b2]), %%xmm1 \n" // b2 might not be 16-bytes aligned
|
||||
"pxor %%xmm1, %%xmm0 \n"
|
||||
"movups %%xmm0, (%[b1]) \n"
|
||||
: : [b1]"r"(buf), [b2]"r"(other.buf): "memory", "%xmm0"
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue