mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
AES-NI encrypt and decrypt
This commit is contained in:
6
aes.cpp
6
aes.cpp
@@ -33,7 +33,7 @@ namespace crypto
|
|||||||
"add $32, %%rcx \n"
|
"add $32, %%rcx \n"
|
||||||
|
|
||||||
|
|
||||||
void ECNCryptoAESNI::SetKey (const uint8_t * key)
|
void ECBCryptoAESNI::SetKey (const uint8_t * key)
|
||||||
{
|
{
|
||||||
__asm__
|
__asm__
|
||||||
(
|
(
|
||||||
@@ -72,7 +72,7 @@ namespace crypto
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ECNCryptoAESNI::Encrypt (const ChipherBlock * in, ChipherBlock * out)
|
void ECBCryptoAESNI::Encrypt (const ChipherBlock * in, ChipherBlock * out)
|
||||||
{
|
{
|
||||||
__asm__
|
__asm__
|
||||||
(
|
(
|
||||||
@@ -99,7 +99,7 @@ namespace crypto
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ECNCryptoAESNI::Decrypt (const ChipherBlock * in, ChipherBlock * out)
|
void ECBCryptoAESNI::Decrypt (const ChipherBlock * in, ChipherBlock * out)
|
||||||
{
|
{
|
||||||
__asm__
|
__asm__
|
||||||
(
|
(
|
||||||
|
|||||||
Reference in New Issue
Block a user