mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-29 04:07:49 +02:00
tunnel decryption using AES-NI
This commit is contained in:
parent
b4b3ba16cc
commit
11ac6712e7
2 changed files with 32 additions and 0 deletions
4
aes.h
4
aes.h
|
@ -176,7 +176,11 @@ namespace crypto
|
|||
private:
|
||||
|
||||
ECBDecryption m_IVDecryption;
|
||||
#ifdef __x86_64__
|
||||
ECBDecryption m_LayerDecryption;
|
||||
#else
|
||||
CBCDecryption m_LayerDecryption;
|
||||
#endif
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue