tunnel decryption using AES-NI

This commit is contained in:
orignal 2014-05-15 13:10:07 -04:00
parent b4b3ba16cc
commit 11ac6712e7
2 changed files with 32 additions and 0 deletions

4
aes.h
View file

@ -176,7 +176,11 @@ namespace crypto
private:
ECBDecryption m_IVDecryption;
#ifdef __x86_64__
ECBDecryption m_LayerDecryption;
#else
CBCDecryption m_LayerDecryption;
#endif
};
}
}