You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
i2pd/aes.cpp

167 lines
4.3 KiB
C++

#include <stdlib.h>
10 years ago
#include "aes.h"
namespace i2p
{
namespace crypto
{
10 years ago
#ifdef __x86_64__
#define KeyExpansion256 \
"pshufd $0xff, %%xmm2, %%xmm2 \n" \
"movaps %%xmm1, %%xmm4 \n" \
"pslldq $4, %%xmm4 \n" \
"pxor %%xmm4, %%xmm1 \n" \
"pslldq $4, %%xmm4 \n" \
"pxor %%xmm4, %%xmm1 \n" \
"pslldq $4, %%xmm4 \n" \
"pxor %%xmm4, %%xmm1 \n" \
"pxor %%xmm2, %%xmm1 \n" \
"movups %%xmm1, (%%rcx) \n" \
"aeskeygenassist $0, %%xmm1, %%xmm4 \n" \
"pshufd $0xaa, %%xmm4, %%xmm2 \n" \
"movaps %%xmm3, %%xmm4 \n" \
"pslldq $4, %%xmm4 \n" \
"pxor %%xmm4, %%xmm3 \n" \
"pslldq $4, %%xmm4 \n" \
"pxor %%xmm4, %%xmm3 \n" \
"pslldq $4, %%xmm4 \n" \
"pxor %%xmm4, %%xmm3 \n" \
"pxor %%xmm2, %%xmm3 \n" \
"movups %%xmm3, 16(%%rcx) \n" \
"add $32, %%rcx \n"
void ECBCryptoAESNI::SetKey (const uint8_t * key)
10 years ago
{
__asm__
(
"movups (%%rsi), %%xmm1 \n"
"movups 16(%%rsi), %%xmm3 \n"
"movups %%xmm1, (%%rdi) \n"
"movups %%xmm3, 16(%%rdi) \n"
"lea 32(%%rdi), %%rcx \n"
"aeskeygenassist $1, %%xmm3, %%xmm2 \n"
KeyExpansion256
"aeskeygenassist $2, %%xmm3, %%xmm2 \n"
KeyExpansion256
"aeskeygenassist $4, %%xmm3, %%xmm2 \n"
KeyExpansion256
"aeskeygenassist $8, %%xmm3, %%xmm2 \n"
KeyExpansion256
"aeskeygenassist $16, %%xmm3, %%xmm2 \n"
10 years ago
KeyExpansion256
"aeskeygenassist $32, %%xmm3, %%xmm2 \n"
10 years ago
KeyExpansion256
"aeskeygenassist $64, %%xmm3, %%xmm2 \n"
10 years ago
// key expansion final
"pshufd $0xff, %%xmm2, %%xmm2 \n"
"movaps %%xmm1, %%xmm4 \n"
"pslldq $4, %%xmm4 \n"
"pxor %%xmm4, %%xmm1 \n"
"pslldq $4, %%xmm4 \n"
"pxor %%xmm4, %%xmm1 \n"
"pslldq $4, %%xmm4 \n"
"pxor %%xmm4, %%xmm1 \n"
"pxor %%xmm2, %%xmm1 \n"
"movups %%xmm1, (%%rcx) \n"
: // output
: "S" (key), "D" (m_KeySchedule) // input
: "%rcx" // modified
);
}
void ECBCryptoAESNI::Encrypt (const ChipherBlock * in, ChipherBlock * out)
{
__asm__
(
"movups (%%rsi), %%xmm0 \n"
"pxor (%%rdx), %%xmm0 \n"
"aesenc 16(%%rdx), %%xmm0 \n"
"aesenc 32(%%rdx), %%xmm0 \n"
"aesenc 64(%%rdx), %%xmm0 \n"
"aesenc 80(%%rdx), %%xmm0 \n"
"aesenc 96(%%rdx), %%xmm0 \n"
"aesenc 112(%%rdx), %%xmm0 \n"
"aesenc 128(%%rdx), %%xmm0 \n"
"aesenc 144(%%rdx), %%xmm0 \n"
"aesenc 160(%%rdx), %%xmm0 \n"
"aesenc 176(%%rdx), %%xmm0 \n"
"aesenc 192(%%rdx), %%xmm0 \n"
"aesenc 208(%%rdx), %%xmm0 \n"
"aesenclast 224(%%rdx), %%xmm0 \n"
"movups %%xmm0, (%%rdi) \n"
: : "d" ((uint64_t)m_KeySchedule), "S" (in), "D" (out)
);
}
void ECBCryptoAESNI::Decrypt (const ChipherBlock * in, ChipherBlock * out)
{
__asm__
(
"movups (%%rsi), %%xmm0 \n"
"pxor 224(%%rdx), %%xmm0 \n"
"aesdec 208(%%rdx), %%xmm0 \n"
"aesdec 192(%%rdx), %%xmm0 \n"
"aesdec 176(%%rdx), %%xmm0 \n"
"aesdec 160(%%rdx), %%xmm0 \n"
"aesdec 144(%%rdx), %%xmm0 \n"
"aesdec 128(%%rdx), %%xmm0 \n"
"aesdec 112(%%rdx), %%xmm0 \n"
"aesdec 96(%%rdx), %%xmm0 \n"
"aesdec 80(%%rdx), %%xmm0 \n"
"aesdec 64(%%rdx), %%xmm0 \n"
"aesdec 32(%%rdx), %%xmm0 \n"
"aesdec 16(%%rdx), %%xmm0 \n"
"aesdeclast (%%rdx), %%xmm0 \n"
"movups %%xmm0, (%%rdi) \n"
: : "d" ((uint64_t)m_KeySchedule), "S" (in), "D" (out)
);
}
10 years ago
#endif
10 years ago
void CBCEncryption::Encrypt (int numBlocks, const ChipherBlock * in, ChipherBlock * out)
{
for (int i = 0; i < numBlocks; i++)
{
m_LastBlock.ll[0] ^= in[i].ll[0];
m_LastBlock.ll[1] ^= in[i].ll[1];
m_ECBEncryption.ProcessData (m_LastBlock.buf, m_LastBlock.buf, 16);
out[i] = m_LastBlock;
}
}
bool CBCEncryption::Encrypt (const uint8_t * in, std::size_t len, uint8_t * out)
{
div_t d = div (len, 16);
if (d.rem) return false; // len is not multipple of 16
Encrypt (d.quot, (const ChipherBlock *)in, (ChipherBlock *)out);
return true;
}
10 years ago
void CBCDecryption::Decrypt (int numBlocks, const ChipherBlock * in, ChipherBlock * out)
{
for (int i = 0; i < numBlocks; i++)
{
ChipherBlock tmp = in[i];
10 years ago
m_ECBDecryption.ProcessData (out[i].buf, in[i].buf, 16);
out[i].ll[0] ^= m_IV.ll[0];
out[i].ll[1] ^= m_IV.ll[1];
m_IV = tmp;
10 years ago
}
}
bool CBCDecryption::Decrypt (const uint8_t * in, std::size_t len, uint8_t * out)
{
div_t d = div (len, 16);
if (d.rem) return false; // len is not multipple of 16
Decrypt (d.quot, (const ChipherBlock *)in, (ChipherBlock *)out);
return true;
}
10 years ago
}
}