// rijndael-simd.cpp - written and placed in the public domain by // Jeffrey Walton, Uri Blumenthal and Marcel Raad. // // This source file uses intrinsics to gain access to AES-NI and // ARMv8a AES instructions. A separate source file is needed // because additional CXXFLAGS are required to enable the // appropriate instructions sets in some build configurations. // // ARMv8a AES code based on CriticalBlue code from Johannes Schneiders, // Skip Hovsmith and Barry O'Rourke for the mbedTLS project. Stepping // mbedTLS under a debugger was helped for us to determine problems // with our subkey generation and scheduling. // // AltiVec and Power8 code based on http://github.com/noloader/AES-Power8 // #include "pch.h" #include "config.h" #include "misc.h" // We set CRYPTOPP_ARM_AES_AVAILABLE based on compiler version. // If the crypto is not available, then we have to disable it here. #if !(defined(__ARM_FEATURE_CRYPTO) || defined(_MSC_VER)) # undef CRYPTOPP_ARM_AES_AVAILABLE #endif // We set CRYPTOPP_POWER8_CRYPTO_AVAILABLE based on compiler version. // If the crypto is not available, then we have to disable it here. #if !(defined(__CRYPTO) || defined(_ARCH_PWR8) || defined(_ARCH_PWR9)) # undef CRYPTOPP_POWER8_CRYPTO_AVAILABLE #endif #if (CRYPTOPP_AESNI_AVAILABLE) // Hack... We are supposed to use . GCC 4.8, LLVM Clang 3.5 // and Apple Clang 6.0 conflates SSE4.1 and SSE4.2. If we use // then compile fails with "SSE4.2 instruction set not enabled". Also see // http://gcc.gnu.org/ml/gcc-help/2017-08/msg00015.html. # include # include #endif #if (CRYPTOPP_ARM_AES_AVAILABLE) # include #endif // Don't include when using Apple Clang. Early Apple compilers // fail to compile with included. Later Apple compilers compile // intrinsics without included. Also avoid it with GCC 4.8. #if (CRYPTOPP_ARM_AES_AVAILABLE) && !defined(CRYPTOPP_APPLE_CLANG_VERSION) && \ (!defined(CRYPTOPP_GCC_VERSION) || (CRYPTOPP_GCC_VERSION >= 40900)) # include #endif #if defined(CRYPTOPP_ALTIVEC_AVAILABLE) # include # undef vector # undef pixel # undef bool #endif #ifdef CRYPTOPP_GNU_STYLE_INLINE_ASSEMBLY # include # include #endif #ifndef EXCEPTION_EXECUTE_HANDLER # define EXCEPTION_EXECUTE_HANDLER 1 #endif // Hack for SunCC, http://github.com/weidai11/cryptopp/issues/224 #if (__SUNPRO_CC >= 0x5130) # define MAYBE_CONST # define MAYBE_UNCONST_CAST(T, x) const_cast(x) #else # define MAYBE_CONST const # define MAYBE_UNCONST_CAST(T, x) (x) #endif // Clang __m128i casts, http://bugs.llvm.org/show_bug.cgi?id=20670 #define M128_CAST(x) ((__m128i *)(void *)(x)) #define CONST_M128_CAST(x) ((const __m128i *)(const void *)(x)) NAMESPACE_BEGIN(CryptoPP) #ifdef CRYPTOPP_GNU_STYLE_INLINE_ASSEMBLY extern "C" { typedef void (*SigHandler)(int); static jmp_buf s_jmpSIGILL; static void SigIllHandler(int) { longjmp(s_jmpSIGILL, 1); } }; #endif // Not CRYPTOPP_MS_STYLE_INLINE_ASSEMBLY #if (CRYPTOPP_BOOL_ARM32 || CRYPTOPP_BOOL_ARM64) bool CPU_ProbeAES() { #if (CRYPTOPP_ARM_AES_AVAILABLE) # if defined(CRYPTOPP_MS_STYLE_INLINE_ASSEMBLY) volatile bool result = true; __try { // AES encrypt and decrypt uint8x16_t data = vdupq_n_u8(0), key = vdupq_n_u8(0); uint8x16_t r1 = vaeseq_u8(data, key); uint8x16_t r2 = vaesdq_u8(data, key); r1 = vaesmcq_u8(r1); r2 = vaesimcq_u8(r2); result = !!(vgetq_lane_u8(r1,0) | vgetq_lane_u8(r2,7)); } __except (EXCEPTION_EXECUTE_HANDLER) { return false; } return result; # else # if defined(__APPLE__) // No SIGILL probes on Apple platforms. return false; # endif // longjmp and clobber warnings. Volatile is required. // http://github.com/weidai11/cryptopp/issues/24 and http://stackoverflow.com/q/7721854 volatile bool result = true; volatile SigHandler oldHandler = signal(SIGILL, SigIllHandler); if (oldHandler == SIG_ERR) return false; volatile sigset_t oldMask; if (sigprocmask(0, NULLPTR, (sigset_t*)&oldMask)) return false; if (setjmp(s_jmpSIGILL)) result = false; else { uint8x16_t data = vdupq_n_u8(0), key = vdupq_n_u8(0); uint8x16_t r1 = vaeseq_u8(data, key); uint8x16_t r2 = vaesdq_u8(data, key); r1 = vaesmcq_u8(r1); r2 = vaesimcq_u8(r2); // Hack... GCC optimizes away the code and returns true result = !!(vgetq_lane_u8(r1,0) | vgetq_lane_u8(r2,7)); } sigprocmask(SIG_SETMASK, (sigset_t*)&oldMask, NULLPTR); signal(SIGILL, oldHandler); return result; # endif #else return false; #endif // CRYPTOPP_ARM_AES_AVAILABLE } #endif // ARM32 or ARM64 ANONYMOUS_NAMESPACE_BEGIN CRYPTOPP_ALIGN_DATA(16) const word32 s_one[] = {0, 0, 0, 1<<24}; /* for 128-bit blocks, Rijndael never uses more than 10 rcon values */ CRYPTOPP_ALIGN_DATA(16) const word32 s_rconLE[] = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1B, 0x36 }; CRYPTOPP_ALIGN_DATA(16) const word32 s_rconBE[] = { 0x01000000, 0x02000000, 0x04000000, 0x08000000, 0x10000000, 0x20000000, 0x40000000, 0x80000000, 0x1B000000, 0x36000000 }; ANONYMOUS_NAMESPACE_END // ***************************** ARMv8 ***************************** // #if (CRYPTOPP_ARM_AES_AVAILABLE) inline void ARMV8_Enc_Block(uint8x16_t &block, const word32 *subkeys, unsigned int rounds) { CRYPTOPP_ASSERT(subkeys); CRYPTOPP_ASSERT(rounds >= 9); const byte *keys = reinterpret_cast(subkeys); // Unroll the loop, profit 0.3 to 0.5 cpb. block = vaeseq_u8(block, vld1q_u8(keys+0)); block = vaesmcq_u8(block); block = vaeseq_u8(block, vld1q_u8(keys+16)); block = vaesmcq_u8(block); block = vaeseq_u8(block, vld1q_u8(keys+32)); block = vaesmcq_u8(block); block = vaeseq_u8(block, vld1q_u8(keys+48)); block = vaesmcq_u8(block); block = vaeseq_u8(block, vld1q_u8(keys+64)); block = vaesmcq_u8(block); block = vaeseq_u8(block, vld1q_u8(keys+80)); block = vaesmcq_u8(block); block = vaeseq_u8(block, vld1q_u8(keys+96)); block = vaesmcq_u8(block); block = vaeseq_u8(block, vld1q_u8(keys+112)); block = vaesmcq_u8(block); block = vaeseq_u8(block, vld1q_u8(keys+128)); block = vaesmcq_u8(block); unsigned int i=9; for ( ; i(subkeys); unsigned int i=0; for ( ; i= 9); const byte *keys = reinterpret_cast(subkeys); // Unroll the loop, profit 0.3 to 0.5 cpb. block = vaesdq_u8(block, vld1q_u8(keys+0)); block = vaesimcq_u8(block); block = vaesdq_u8(block, vld1q_u8(keys+16)); block = vaesimcq_u8(block); block = vaesdq_u8(block, vld1q_u8(keys+32)); block = vaesimcq_u8(block); block = vaesdq_u8(block, vld1q_u8(keys+48)); block = vaesimcq_u8(block); block = vaesdq_u8(block, vld1q_u8(keys+64)); block = vaesimcq_u8(block); block = vaesdq_u8(block, vld1q_u8(keys+80)); block = vaesimcq_u8(block); block = vaesdq_u8(block, vld1q_u8(keys+96)); block = vaesimcq_u8(block); block = vaesdq_u8(block, vld1q_u8(keys+112)); block = vaesimcq_u8(block); block = vaesdq_u8(block, vld1q_u8(keys+128)); block = vaesimcq_u8(block); unsigned int i=9; for ( ; i(subkeys); unsigned int i=0; for ( ; i size_t Rijndael_AdvancedProcessBlocks_ARMV8(F1 func1, F4 func4, const word32 *subKeys, size_t rounds, const byte *inBlocks, const byte *xorBlocks, byte *outBlocks, size_t length, word32 flags) { CRYPTOPP_ASSERT(subKeys); CRYPTOPP_ASSERT(inBlocks); CRYPTOPP_ASSERT(outBlocks); CRYPTOPP_ASSERT(length >= 16); const size_t blockSize = 16; size_t inIncrement = (flags & (BlockTransformation::BT_InBlockIsCounter|BlockTransformation::BT_DontIncrementInOutPointers)) ? 0 : blockSize; size_t xorIncrement = xorBlocks ? blockSize : 0; size_t outIncrement = (flags & BlockTransformation::BT_DontIncrementInOutPointers) ? 0 : blockSize; if (flags & BlockTransformation::BT_ReverseDirection) { inBlocks += length - blockSize; xorBlocks += length - blockSize; outBlocks += length - blockSize; inIncrement = 0-inIncrement; xorIncrement = 0-xorIncrement; outIncrement = 0-outIncrement; } if (flags & BlockTransformation::BT_AllowParallel) { while (length >= 4*blockSize) { uint8x16_t block0, block1, block2, block3, temp; block0 = vld1q_u8(inBlocks); if (flags & BlockTransformation::BT_InBlockIsCounter) { uint32x4_t be = vld1q_u32(s_one); block1 = vaddq_u8(block0, vreinterpretq_u8_u32(be)); block2 = vaddq_u8(block1, vreinterpretq_u8_u32(be)); block3 = vaddq_u8(block2, vreinterpretq_u8_u32(be)); temp = vaddq_u8(block3, vreinterpretq_u8_u32(be)); vst1q_u8(const_cast(inBlocks), temp); } else { inBlocks += inIncrement; block1 = vld1q_u8(inBlocks); inBlocks += inIncrement; block2 = vld1q_u8(inBlocks); inBlocks += inIncrement; block3 = vld1q_u8(inBlocks); inBlocks += inIncrement; } if (flags & BlockTransformation::BT_XorInput) { block0 = veorq_u8(block0, vld1q_u8(xorBlocks)); xorBlocks += xorIncrement; block1 = veorq_u8(block1, vld1q_u8(xorBlocks)); xorBlocks += xorIncrement; block2 = veorq_u8(block2, vld1q_u8(xorBlocks)); xorBlocks += xorIncrement; block3 = veorq_u8(block3, vld1q_u8(xorBlocks)); xorBlocks += xorIncrement; } func4(block0, block1, block2, block3, subKeys, rounds); if (xorBlocks && !(flags & BlockTransformation::BT_XorInput)) { block0 = veorq_u8(block0, vld1q_u8(xorBlocks)); xorBlocks += xorIncrement; block1 = veorq_u8(block1, vld1q_u8(xorBlocks)); xorBlocks += xorIncrement; block2 = veorq_u8(block2, vld1q_u8(xorBlocks)); xorBlocks += xorIncrement; block3 = veorq_u8(block3, vld1q_u8(xorBlocks)); xorBlocks += xorIncrement; } vst1q_u8(outBlocks, block0); outBlocks += outIncrement; vst1q_u8(outBlocks, block1); outBlocks += outIncrement; vst1q_u8(outBlocks, block2); outBlocks += outIncrement; vst1q_u8(outBlocks, block3); outBlocks += outIncrement; length -= 4*blockSize; } } while (length >= blockSize) { uint8x16_t block = vld1q_u8(inBlocks); if (flags & BlockTransformation::BT_XorInput) block = veorq_u8(block, vld1q_u8(xorBlocks)); if (flags & BlockTransformation::BT_InBlockIsCounter) const_cast(inBlocks)[15]++; func1(block, subKeys, rounds); if (xorBlocks && !(flags & BlockTransformation::BT_XorInput)) block = veorq_u8(block, vld1q_u8(xorBlocks)); vst1q_u8(outBlocks, block); inBlocks += inIncrement; outBlocks += outIncrement; xorBlocks += xorIncrement; length -= blockSize; } return length; } size_t Rijndael_Enc_AdvancedProcessBlocks_ARMV8(const word32 *subKeys, size_t rounds, const byte *inBlocks, const byte *xorBlocks, byte *outBlocks, size_t length, word32 flags) { return Rijndael_AdvancedProcessBlocks_ARMV8(ARMV8_Enc_Block, ARMV8_Enc_4_Blocks, subKeys, rounds, inBlocks, xorBlocks, outBlocks, length, flags); } size_t Rijndael_Dec_AdvancedProcessBlocks_ARMV8(const word32 *subKeys, size_t rounds, const byte *inBlocks, const byte *xorBlocks, byte *outBlocks, size_t length, word32 flags) { return Rijndael_AdvancedProcessBlocks_ARMV8(ARMV8_Dec_Block, ARMV8_Dec_4_Blocks, subKeys, rounds, inBlocks, xorBlocks, outBlocks, length, flags); } #endif // CRYPTOPP_ARM_AES_AVAILABLE // ***************************** AES-NI ***************************** // #if (CRYPTOPP_AESNI_AVAILABLE) inline void AESNI_Enc_Block(__m128i &block, MAYBE_CONST __m128i *subkeys, unsigned int rounds) { block = _mm_xor_si128(block, subkeys[0]); for (unsigned int i=1; i inline size_t Rijndael_AdvancedProcessBlocks_AESNI(F1 func1, F4 func4, MAYBE_CONST word32 *subKeys, size_t rounds, const byte *inBlocks, const byte *xorBlocks, byte *outBlocks, size_t length, word32 flags) { CRYPTOPP_ASSERT(subKeys); CRYPTOPP_ASSERT(inBlocks); CRYPTOPP_ASSERT(outBlocks); CRYPTOPP_ASSERT(length >= 16); const size_t blockSize = 16; size_t inIncrement = (flags & (BlockTransformation::BT_InBlockIsCounter|BlockTransformation::BT_DontIncrementInOutPointers)) ? 0 : blockSize; size_t xorIncrement = xorBlocks ? blockSize : 0; size_t outIncrement = (flags & BlockTransformation::BT_DontIncrementInOutPointers) ? 0 : blockSize; MAYBE_CONST __m128i *subkeys = reinterpret_cast(subKeys); if (flags & BlockTransformation::BT_ReverseDirection) { inBlocks += length - blockSize; xorBlocks += length - blockSize; outBlocks += length - blockSize; inIncrement = 0-inIncrement; xorIncrement = 0-xorIncrement; outIncrement = 0-outIncrement; } if (flags & BlockTransformation::BT_AllowParallel) { while (length >= 4*blockSize) { __m128i block0 = _mm_loadu_si128(CONST_M128_CAST(inBlocks)), block1, block2, block3; if (flags & BlockTransformation::BT_InBlockIsCounter) { const __m128i be1 = *CONST_M128_CAST(s_one); block1 = _mm_add_epi32(block0, be1); block2 = _mm_add_epi32(block1, be1); block3 = _mm_add_epi32(block2, be1); _mm_storeu_si128(M128_CAST(inBlocks), _mm_add_epi32(block3, be1)); } else { inBlocks += inIncrement; block1 = _mm_loadu_si128(CONST_M128_CAST(inBlocks)); inBlocks += inIncrement; block2 = _mm_loadu_si128(CONST_M128_CAST(inBlocks)); inBlocks += inIncrement; block3 = _mm_loadu_si128(CONST_M128_CAST(inBlocks)); inBlocks += inIncrement; } if (flags & BlockTransformation::BT_XorInput) { // Coverity finding, appears to be false positive. Assert the condition. CRYPTOPP_ASSERT(xorBlocks); block0 = _mm_xor_si128(block0, _mm_loadu_si128(CONST_M128_CAST(xorBlocks))); xorBlocks += xorIncrement; block1 = _mm_xor_si128(block1, _mm_loadu_si128(CONST_M128_CAST(xorBlocks))); xorBlocks += xorIncrement; block2 = _mm_xor_si128(block2, _mm_loadu_si128(CONST_M128_CAST(xorBlocks))); xorBlocks += xorIncrement; block3 = _mm_xor_si128(block3, _mm_loadu_si128(CONST_M128_CAST(xorBlocks))); xorBlocks += xorIncrement; } func4(block0, block1, block2, block3, subkeys, static_cast(rounds)); if (xorBlocks && !(flags & BlockTransformation::BT_XorInput)) { block0 = _mm_xor_si128(block0, _mm_loadu_si128(CONST_M128_CAST(xorBlocks))); xorBlocks += xorIncrement; block1 = _mm_xor_si128(block1, _mm_loadu_si128(CONST_M128_CAST(xorBlocks))); xorBlocks += xorIncrement; block2 = _mm_xor_si128(block2, _mm_loadu_si128(CONST_M128_CAST(xorBlocks))); xorBlocks += xorIncrement; block3 = _mm_xor_si128(block3, _mm_loadu_si128(CONST_M128_CAST(xorBlocks))); xorBlocks += xorIncrement; } _mm_storeu_si128(M128_CAST(outBlocks), block0); outBlocks += outIncrement; _mm_storeu_si128(M128_CAST(outBlocks), block1); outBlocks += outIncrement; _mm_storeu_si128(M128_CAST(outBlocks), block2); outBlocks += outIncrement; _mm_storeu_si128(M128_CAST(outBlocks), block3); outBlocks += outIncrement; length -= 4*blockSize; } } while (length >= blockSize) { __m128i block = _mm_loadu_si128(CONST_M128_CAST(inBlocks)); if (flags & BlockTransformation::BT_XorInput) block = _mm_xor_si128(block, _mm_loadu_si128(CONST_M128_CAST(xorBlocks))); if (flags & BlockTransformation::BT_InBlockIsCounter) const_cast(inBlocks)[15]++; func1(block, subkeys, static_cast(rounds)); if (xorBlocks && !(flags & BlockTransformation::BT_XorInput)) block = _mm_xor_si128(block, _mm_loadu_si128(CONST_M128_CAST(xorBlocks))); _mm_storeu_si128(M128_CAST(outBlocks), block); inBlocks += inIncrement; outBlocks += outIncrement; xorBlocks += xorIncrement; length -= blockSize; } return length; } size_t Rijndael_Enc_AdvancedProcessBlocks_AESNI(const word32 *subKeys, size_t rounds, const byte *inBlocks, const byte *xorBlocks, byte *outBlocks, size_t length, word32 flags) { // SunCC workaround MAYBE_CONST word32* sk = MAYBE_UNCONST_CAST(word32*, subKeys); MAYBE_CONST byte* ib = MAYBE_UNCONST_CAST(byte*, inBlocks); MAYBE_CONST byte* xb = MAYBE_UNCONST_CAST(byte*, xorBlocks); return Rijndael_AdvancedProcessBlocks_AESNI(AESNI_Enc_Block, AESNI_Enc_4_Blocks, sk, rounds, ib, xb, outBlocks, length, flags); } size_t Rijndael_Dec_AdvancedProcessBlocks_AESNI(const word32 *subKeys, size_t rounds, const byte *inBlocks, const byte *xorBlocks, byte *outBlocks, size_t length, word32 flags) { MAYBE_CONST word32* sk = MAYBE_UNCONST_CAST(word32*, subKeys); MAYBE_CONST byte* ib = MAYBE_UNCONST_CAST(byte*, inBlocks); MAYBE_CONST byte* xb = MAYBE_UNCONST_CAST(byte*, xorBlocks); return Rijndael_AdvancedProcessBlocks_AESNI(AESNI_Dec_Block, AESNI_Dec_4_Blocks, sk, rounds, ib, xb, outBlocks, length, flags); } void Rijndael_UncheckedSetKey_SSE4_AESNI(const byte *userKey, size_t keyLen, word32 *rk, unsigned int rounds) { const word32 *ro = s_rconLE, *rc = s_rconLE; CRYPTOPP_UNUSED(ro); __m128i temp = _mm_loadu_si128(M128_CAST(userKey+keyLen-16)); std::memcpy(rk, userKey, keyLen); // keySize: m_key allocates 4*(rounds+1) word32's. const size_t keySize = 4*(rounds+1); const word32* end = rk + keySize; while (true) { CRYPTOPP_ASSERT(rc < ro + COUNTOF(s_rconLE)); rk[keyLen/4] = rk[0] ^ _mm_extract_epi32(_mm_aeskeygenassist_si128(temp, 0), 3) ^ *(rc++); rk[keyLen/4+1] = rk[1] ^ rk[keyLen/4]; rk[keyLen/4+2] = rk[2] ^ rk[keyLen/4+1]; rk[keyLen/4+3] = rk[3] ^ rk[keyLen/4+2]; if (rk + keyLen/4 + 4 == end) break; if (keyLen == 24) { rk[10] = rk[ 4] ^ rk[ 9]; rk[11] = rk[ 5] ^ rk[10]; CRYPTOPP_ASSERT(keySize >= 12); temp = _mm_insert_epi32(temp, rk[11], 3); } else if (keyLen == 32) { CRYPTOPP_ASSERT(keySize >= 12); temp = _mm_insert_epi32(temp, rk[11], 3); rk[12] = rk[ 4] ^ _mm_extract_epi32(_mm_aeskeygenassist_si128(temp, 0), 2); rk[13] = rk[ 5] ^ rk[12]; rk[14] = rk[ 6] ^ rk[13]; rk[15] = rk[ 7] ^ rk[14]; CRYPTOPP_ASSERT(keySize >= 16); temp = _mm_insert_epi32(temp, rk[15], 3); } else { CRYPTOPP_ASSERT(keySize >= 8); temp = _mm_insert_epi32(temp, rk[7], 3); } rk += keyLen/4; } } void Rijndael_UncheckedSetKeyRev_AESNI(word32 *key, unsigned int rounds) { unsigned int i, j; __m128i temp; #if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x5120) // __m128i is an unsigned long long[2], and support for swapping it was not added until C++11. // SunCC 12.1 - 12.3 fail to consume the swap; while SunCC 12.4 consumes it without -std=c++11. vec_swap(*(__m128i *)(key), *(__m128i *)(key+4*rounds)); #else std::swap(*M128_CAST(key), *M128_CAST(key+4*rounds)); #endif for (i = 4, j = 4*rounds-4; i < j; i += 4, j -= 4) { temp = _mm_aesimc_si128(*M128_CAST(key+i)); *M128_CAST(key+i) = _mm_aesimc_si128(*M128_CAST(key+j)); *M128_CAST(key+j) = temp; } *M128_CAST(key+i) = _mm_aesimc_si128(*M128_CAST(key+i)); } #endif // CRYPTOPP_AESNI_AVAILABLE // ***************************** Power 8 ***************************** // #if (CRYPTOPP_POWER8_AES_AVAILABLE) #if defined(CRYPTOPP_XLC_VERSION) // #include typedef __vector unsigned char uint8x16_p8; typedef __vector unsigned long long uint64x2_p8; #elif defined(CRYPTOPP_GCC_VERSION) typedef __vector unsigned char uint8x16_p8; typedef __vector unsigned long long uint64x2_p8; #endif /* Reverses a 16-byte array as needed */ void ByteReverseArrayLE(byte dest[16], const byte src[16]) { #if defined(CRYPTOPP_XLC_VERSION) && defined(IS_LITTLE_ENDIAN) vec_st(vec_reve(vec_ld(0, src)), 0, dest); #elif defined(IS_LITTLE_ENDIAN) const uint8x16_p8 mask = {15,14,13,12, 11,10,9,8, 7,6,5,4, 3,2,1,0}; const uint8x16_p8 zero = {0}; vec_vsx_st(vec_perm(vec_vsx_ld(0, src), zero, mask), 0, dest); #else if (src != dest) std::memcpy(dest, src, 16); #endif } void ByteReverseArrayLE(byte src[16]) { #if defined(CRYPTOPP_XLC_VERSION) && defined(IS_LITTLE_ENDIAN) vec_st(vec_reve(vec_ld(0, src)), 0, src); #elif defined(IS_LITTLE_ENDIAN) const uint8x16_p8 mask = {15,14,13,12, 11,10,9,8, 7,6,5,4, 3,2,1,0}; const uint8x16_p8 zero = {0}; vec_vsx_st(vec_perm(vec_vsx_ld(0, src), zero, mask), 0, src); #endif } uint8x16_p8 Load8x16(const uint8_t src[16]) { #if defined(CRYPTOPP_XLC_VERSION) /* http://stackoverflow.com/q/46124383/608639 */ uint8_t* s = (uint8_t*)src; # if defined(IS_LITTLE_ENDIAN) return vec_xl_be(0, s); # else return vec_xl(0, s); # endif #else /* GCC, Clang, etc */ return (uint8x16_p8)vec_vsx_ld(0, src); #endif } void Store8x16(const uint8x16_p8 src, uint8_t dest[16]) { #if defined(CRYPTOPP_XLC_VERSION) /* IBM XL C/C++ compiler */ # if defined(IS_LITTLE_ENDIAN) vec_xst_be(src, 0, dest); # else vec_xst(src, 0, dest); # endif #else /* GCC, Clang, etc */ vec_vsx_st(src, 0, dest); #endif } uint64x2_p8 Load64x2(const uint8_t src[16]) { #if defined(CRYPTOPP_XLC_VERSION) /* http://stackoverflow.com/q/46124383/608639 */ uint8_t* s = (uint8_t*)src; # if defined(IS_LITTLE_ENDIAN) return (uint64x2_p8)vec_xl_be(0, s); # else return (uint64x2_p8)vec_xl(0, s); # endif #else /* GCC, Clang, etc */ # if defined(IS_LITTLE_ENDIAN) const uint8x16_p8 mask = {15,14,13,12, 11,10,9,8, 7,6,5,4, 3,2,1,0}; const uint8x16_p8 zero = {0}; return (uint64x2_p8)vec_perm(vec_vsx_ld(0, src), zero, mask); # else return (uint64x2_p8)vec_vsx_ld(0, src); # endif #endif } void Store64x2(const uint64x2_p8 src, uint8_t dest[16]) { #if defined(CRYPTOPP_XLC_VERSION) /* IBM XL C/C++ compiler */ # if defined(IS_LITTLE_ENDIAN) vec_xst_be((uint8x16_p8)src, 0, dest); # else vec_xst((uint8x16_p8)src, 0, dest); # endif #else /* GCC, Clang, etc */ # if defined(IS_LITTLE_ENDIAN) const uint8x16_p8 mask = {15,14,13,12, 11,10,9,8, 7,6,5,4, 3,2,1,0}; const uint8x16_p8 zero = {0}; vec_vsx_st(vec_perm((uint8x16_p8)src, zero, mask), 0, dest); # else vec_vsx_st((uint8x16_p8)src, 0, dest); # endif #endif } ////////////////////////////////////////////////////////////////// #if defined(CRYPTOPP_XLC_VERSION) typedef uint8x16_p8 VectorType; #elif defined(CRYPTOPP_GCC_VERSION) typedef uint64x2_p8 VectorType; #else CRYPTOPP_ASSERT(0); #endif inline VectorType VectorLoad(const byte src[16]) { #if defined(CRYPTOPP_XLC_VERSION) return Load8x16(src); #elif defined(CRYPTOPP_GCC_VERSION) return Load64x2(src); #endif } inline VectorType VectorLoadAligned(const byte vec[16]) { return (VectorType)vec_ld(0, vec); } inline VectorType VectorLoadAligned(int off, const byte vec[16]) { return (VectorType)vec_ld(off, vec); } inline void VectorStore(const VectorType& src, byte dest[16]) { #if defined(CRYPTOPP_XLC_VERSION) return Store8x16(src, dest); #elif defined(CRYPTOPP_GCC_VERSION) return Store64x2(src, dest); #endif } template inline T1 VectorXor(const T1& vec1, const T2& vec2) { return (T1)vec_xor(vec1, (T1)vec2); } template inline T1 VectorAdd(const T1& vec1, const T2& vec2) { return (T1)vec_add(vec1, (T1)vec2); } template inline T1 VectorEncrypt(const T1& state, const T2& key) { #if defined(CRYPTOPP_XLC_VERSION) return (T2)__vcipher(state, key); #elif defined(CRYPTOPP_GCC_VERSION) return __builtin_crypto_vcipher(state, (T1)key); #else CRYPTOPP_ASSERT(0); #endif } template inline T1 VectorEncryptLast(const T1& state, const T2& key) { #if defined(CRYPTOPP_XLC_VERSION) return (T1)__vcipherlast(state, key); #elif defined(CRYPTOPP_GCC_VERSION) return __builtin_crypto_vcipherlast(state, (T1)key); #else CRYPTOPP_ASSERT(0); #endif } template inline T1 VectorDecrypt(const T1& state, const T2& key) { #if defined(CRYPTOPP_XLC_VERSION) return (T1)__vncipher(state, key); #elif defined(CRYPTOPP_GCC_VERSION) return __builtin_crypto_vncipher(state, (T1)key); #else CRYPTOPP_ASSERT(0); #endif } template inline T1 VectorDecryptLast(const T1& state, const T2& key) { #if defined(CRYPTOPP_XLC_VERSION) return (T1)__vncipherlast(state, key); #elif defined(CRYPTOPP_GCC_VERSION) return __builtin_crypto_vncipherlast(state, (T1)key); #else CRYPTOPP_ASSERT(0); #endif } ////////////////////////////////////////////////////////////////// void Rijndael_Enc_ProcessAndXorBlock_POWER8(const word32 *subkeys, size_t rounds, const byte *inBlock, const byte *xorBlock, byte *outBlock) { CRYPTOPP_ASSERT(IsAlignedOn(subkeys, 16)); const byte *keys = reinterpret_cast(subkeys); VectorType s = VectorLoad(inBlock); VectorType k = VectorLoadAligned(keys); s = VectorXor(s, k); for (size_t i=1; i(subkeys); VectorType s = VectorLoad(inBlock); VectorType k = VectorLoadAligned(rounds*16, keys); s = VectorXor(s, k); for (size_t i=rounds-1; i>1; i-=2) { s = VectorDecrypt(s, VectorLoadAligned( i*16, keys)); s = VectorDecrypt(s, VectorLoadAligned((i-1)*16, keys)); } s = VectorDecrypt(s, VectorLoadAligned(16, keys)); s = VectorDecryptLast(s, VectorLoadAligned(0, keys)); // According to benchmarks this is a tad bit slower // if (xorBlock) // s = VectorXor(s, VectorLoad(xorBlock)); VectorType x = xorBlock ? VectorLoad(xorBlock) : (VectorType) {0}; s = VectorXor(s, x); VectorStore(s, outBlock); } #endif // CRYPTOPP_POWER8_AES_AVAILABLE NAMESPACE_END