2017-09-22 10:20:19 +00:00
|
|
|
// ppc-crypto.h - written and placed in public domain by Jeffrey Walton
|
2017-09-22 09:23:29 +00:00
|
|
|
|
2017-09-22 10:20:19 +00:00
|
|
|
//! \file ppc-crypto.h
|
2017-09-22 09:23:29 +00:00
|
|
|
//! \brief Support functions for PowerPC and Power8 vector operations
|
|
|
|
//! \details This header provides an agnostic interface into GCC and
|
|
|
|
//! IBM XL C/C++ compilers modulo their different built-in functions
|
|
|
|
//! for accessing vector intructions.
|
|
|
|
//! \since Crypto++ 6.0
|
|
|
|
|
|
|
|
#ifndef CRYPTOPP_P8_VECTOR_H
|
|
|
|
#define CRYPTOPP_P8_VECTOR_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2017-09-22 10:20:19 +00:00
|
|
|
#if defined(CRYPTOPP_ALTIVEC_AVAILABLE) || defined(CRYPTOPP_DOXYGEN_PROCESSING)
|
2017-09-22 09:23:29 +00:00
|
|
|
# include <altivec.h>
|
|
|
|
# undef vector
|
|
|
|
# undef pixel
|
|
|
|
# undef bool
|
|
|
|
#endif
|
|
|
|
|
|
|
|
NAMESPACE_BEGIN(CryptoPP)
|
|
|
|
|
2017-09-22 10:20:19 +00:00
|
|
|
#if defined(CRYPTOPP_ALTIVEC_AVAILABLE) || defined(CRYPTOPP_DOXYGEN_PROCESSING)
|
2017-09-22 09:23:29 +00:00
|
|
|
|
|
|
|
typedef __vector unsigned char uint8x16_p8;
|
|
|
|
typedef __vector unsigned int uint32x4_p8;
|
|
|
|
typedef __vector unsigned long long uint64x2_p8;
|
|
|
|
|
|
|
|
#if defined(CRYPTOPP_XLC_VERSION)
|
|
|
|
typedef uint8x16_p8 VectorType;
|
|
|
|
#elif defined(CRYPTOPP_GCC_VERSION)
|
|
|
|
typedef uint64x2_p8 VectorType;
|
|
|
|
#endif
|
|
|
|
|
2017-09-22 10:20:19 +00:00
|
|
|
//! \brief Reverse a 16-byte array
|
|
|
|
//! \param src the byte array
|
|
|
|
//! \details ReverseByteArrayLE reverses a 16-byte array on a little endian
|
|
|
|
//! system. It does nothing on a big endian system.
|
2017-09-22 09:23:29 +00:00
|
|
|
void ReverseByteArrayLE(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
|
|
|
|
}
|
|
|
|
|
2017-09-22 10:20:19 +00:00
|
|
|
//! \brief Reverse a vector
|
|
|
|
//! \tparam T a vector type
|
|
|
|
//! \param src the vector
|
|
|
|
//! \details Reverse endian swaps the bytes in a vector
|
|
|
|
template <class T>
|
|
|
|
static inline T Reverse(const T& src)
|
2017-09-22 09:23:29 +00:00
|
|
|
{
|
|
|
|
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 vec_perm(src, zero, mask);
|
|
|
|
}
|
|
|
|
|
2017-09-22 10:20:19 +00:00
|
|
|
//! \brief Loads a vector from a byte array
|
|
|
|
//! \param src the byte array
|
|
|
|
//! \details Loads a vector in big endian format from a byte array.
|
|
|
|
//! VectorLoadBE will swap endianess on little endian systems.
|
|
|
|
//! \note VectorLoadBE does not require an aligned array.
|
2017-09-22 09:23:29 +00:00
|
|
|
static inline VectorType VectorLoadBE(const uint8_t src[16])
|
|
|
|
{
|
|
|
|
#if defined(CRYPTOPP_XLC_VERSION)
|
|
|
|
return (VectorType)vec_xl_be(0, (uint8_t*)src);
|
|
|
|
#else
|
|
|
|
# if defined(IS_LITTLE_ENDIAN)
|
|
|
|
return (VectorType)Reverse(vec_vsx_ld(0, (uint8_t*)src));
|
|
|
|
# else
|
|
|
|
return (VectorType)vec_vsx_ld(0, (uint8_t*)src);
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-09-22 10:20:19 +00:00
|
|
|
//! \brief Loads a vector from a byte array
|
|
|
|
//! \param src the byte array
|
|
|
|
//! \param off offset into the byte array
|
|
|
|
//! \details Loads a vector in big endian format from a byte array.
|
|
|
|
//! VectorLoadBE will swap endianess on little endian systems.
|
|
|
|
//! \note VectorLoadBE does not require an aligned array.
|
2017-09-22 09:23:29 +00:00
|
|
|
static inline VectorType VectorLoadBE(int off, const uint8_t src[16])
|
|
|
|
{
|
|
|
|
#if defined(CRYPTOPP_XLC_VERSION)
|
|
|
|
return (VectorType)vec_xl_be(off, (uint8_t*)src);
|
|
|
|
#else
|
|
|
|
# if defined(IS_LITTLE_ENDIAN)
|
|
|
|
return (VectorType)Reverse(vec_vsx_ld(off, (uint8_t*)src));
|
|
|
|
# else
|
|
|
|
return (VectorType)vec_vsx_ld(off, (uint8_t*)src);
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-09-22 10:20:19 +00:00
|
|
|
//! \brief Stores a vector to a byte array
|
|
|
|
//! \tparam T a vector type
|
|
|
|
//! \param src the vector
|
|
|
|
//! \details Sotres a vector in big endian format to a byte array.
|
|
|
|
//! VectorStoreBE will swap endianess on little endian systems.
|
|
|
|
//! \note VectorStoreBE does not require an aligned array.
|
|
|
|
template <class T>
|
|
|
|
static inline void VectorStoreBE(const T& src, uint8_t dest[16])
|
2017-09-22 09:23:29 +00:00
|
|
|
{
|
|
|
|
#if defined(CRYPTOPP_XLC_VERSION)
|
|
|
|
vec_xst_be((uint8x16_p8)src, 0, (uint8_t*)dest);
|
|
|
|
#else
|
|
|
|
# if defined(IS_LITTLE_ENDIAN)
|
|
|
|
vec_vsx_st(Reverse((uint8x16_p8)src), 0, (uint8_t*)dest);
|
|
|
|
# else
|
|
|
|
vec_vsx_st((uint8x16_p8)src, 0, (uint8_t*)dest);
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-09-22 10:20:19 +00:00
|
|
|
//! \brief Loads a vector from a byte array
|
|
|
|
//! \param src the byte array
|
|
|
|
//! \details Loads a vector in big endian format from a byte array.
|
|
|
|
//! VectorLoad will swap endianess on little endian systems.
|
|
|
|
//! \note VectorLoad does not require an aligned array.
|
2017-09-22 09:23:29 +00:00
|
|
|
static inline VectorType VectorLoad(const byte src[16])
|
|
|
|
{
|
|
|
|
return (VectorType)VectorLoadBE((uint8_t*)src);
|
|
|
|
}
|
|
|
|
|
2017-09-22 10:20:19 +00:00
|
|
|
//! \brief Loads a vector from a byte array
|
|
|
|
//! \param src the byte array
|
|
|
|
//! \param off offset into the byte array
|
|
|
|
//! \details Loads a vector in big endian format from a byte array.
|
|
|
|
//! VectorLoad will swap endianess on little endian systems.
|
|
|
|
//! \note VectorLoad does not require an aligned array.
|
2017-09-22 09:23:29 +00:00
|
|
|
static inline VectorType VectorLoad(int off, const byte src[16])
|
|
|
|
{
|
|
|
|
return (VectorType)VectorLoadBE(off, (uint8_t*)src);
|
|
|
|
}
|
|
|
|
|
2017-09-22 10:20:19 +00:00
|
|
|
//! \brief Loads a vector from a byte array
|
|
|
|
//! \param src the byte array
|
|
|
|
//! \details Loads a vector from a byte array.
|
|
|
|
//! VectorLoadKey does not swap endianess on little endian systems.
|
|
|
|
//! \note VectorLoadKey does not require an aligned array.
|
2017-09-22 09:23:29 +00:00
|
|
|
static inline VectorType VectorLoadKey(const byte src[16])
|
|
|
|
{
|
2017-09-22 10:20:19 +00:00
|
|
|
#if defined(CRYPTOPP_XLC_VERSION)
|
|
|
|
return (VectorType)vec_xl(0, (uint8_t*)src);
|
|
|
|
#else
|
2017-09-22 09:23:29 +00:00
|
|
|
return (VectorType)vec_vsx_ld(0, (uint8_t*)src);
|
2017-09-22 10:20:19 +00:00
|
|
|
#endif
|
2017-09-22 09:23:29 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 10:20:19 +00:00
|
|
|
//! \brief Loads a vector from a 32-bit word array
|
|
|
|
//! \param src the 32-bit word array
|
|
|
|
//! \param off offset into the byte array
|
|
|
|
//! \details Loads a vector from a 32-bit word array.
|
|
|
|
//! VectorLoadKey does not swap endianess on little endian systems.
|
|
|
|
//! \note VectorLoadKey does not require an aligned array.
|
2017-09-22 09:23:29 +00:00
|
|
|
static inline VectorType VectorLoadKey(const word32 src[4])
|
|
|
|
{
|
2017-09-22 10:20:19 +00:00
|
|
|
#if defined(CRYPTOPP_XLC_VERSION)
|
|
|
|
return (VectorType)vec_xl(0, (uint8_t*)src);
|
|
|
|
#else
|
2017-09-22 09:23:29 +00:00
|
|
|
return (VectorType)vec_vsx_ld(0, (uint8_t*)src);
|
2017-09-22 10:20:19 +00:00
|
|
|
#endif
|
2017-09-22 09:23:29 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 10:20:19 +00:00
|
|
|
//! \brief Loads a vector from a byte array
|
|
|
|
//! \param src the byte array
|
|
|
|
//! \param off offset into the byte array
|
|
|
|
//! \details Loads a vector from a byte array.
|
|
|
|
//! VectorLoadKey does not swap endianess on little endian systems.
|
|
|
|
//! \note VectorLoadKey does not require an aligned array.
|
2017-09-22 09:23:29 +00:00
|
|
|
static inline VectorType VectorLoadKey(int off, const byte src[16])
|
|
|
|
{
|
2017-09-22 10:20:19 +00:00
|
|
|
#if defined(CRYPTOPP_XLC_VERSION)
|
|
|
|
return (VectorType)vec_xl(off, (uint8_t*)src);
|
|
|
|
#else
|
2017-09-22 09:23:29 +00:00
|
|
|
return (VectorType)vec_vsx_ld(off, (uint8_t*)src);
|
2017-09-22 10:20:19 +00:00
|
|
|
#endif
|
2017-09-22 09:23:29 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 10:20:19 +00:00
|
|
|
//! \brief Stores a vector to a byte array
|
|
|
|
//! \tparam T a vector type
|
|
|
|
//! \param src the vector
|
|
|
|
//! \details Sotres a vector in big endian format to a byte array.
|
|
|
|
//! VectorStore will swap endianess on little endian systems.
|
|
|
|
//! \note VectorStoreBE does not require an aligned array.
|
|
|
|
template<class T>
|
|
|
|
static inline void VectorStore(const T& src, byte dest[16])
|
2017-09-22 09:23:29 +00:00
|
|
|
{
|
|
|
|
return VectorStoreBE(src, (uint8_t*)dest);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T1, class T2>
|
|
|
|
static inline T1 VectorPermute(const T1& vec1, const T1& vec2, const T2& mask)
|
|
|
|
{
|
|
|
|
return (T1)vec_perm(vec1, vec2, (uint8x16_p8)mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T1, class T2>
|
|
|
|
static inline T1 VectorXor(const T1& vec1, const T2& vec2)
|
|
|
|
{
|
|
|
|
return (T1)vec_xor(vec1, (T1)vec2);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T1, class T2>
|
|
|
|
static inline T1 VectorAdd(const T1& vec1, const T2& vec2)
|
|
|
|
{
|
|
|
|
return (T1)vec_add(vec1, (T1)vec2);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <int C, class T1, class T2>
|
|
|
|
static inline T1 VectorShiftLeft(const T1& vec1, const T2& vec2)
|
|
|
|
{
|
|
|
|
#if defined(IS_LITTLE_ENDIAN)
|
|
|
|
return (T1)vec_sld((uint8x16_p8)vec2, (uint8x16_p8)vec1, 16-C);
|
|
|
|
#else
|
|
|
|
return (T1)vec_sld((uint8x16_p8)vec1, (uint8x16_p8)vec2, C);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T1, class T2>
|
|
|
|
static inline T1 VectorEncrypt(const T1& state, const T2& key)
|
|
|
|
{
|
|
|
|
#if defined(CRYPTOPP_XLC_VERSION)
|
|
|
|
return (T1)__vcipher((VectorType)state, (VectorType)key);
|
|
|
|
#elif defined(CRYPTOPP_GCC_VERSION)
|
|
|
|
return (T1)__builtin_crypto_vcipher((VectorType)state, (VectorType)key);
|
|
|
|
#else
|
|
|
|
CRYPTOPP_ASSERT(0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T1, class T2>
|
|
|
|
static inline T1 VectorEncryptLast(const T1& state, const T2& key)
|
|
|
|
{
|
|
|
|
#if defined(CRYPTOPP_XLC_VERSION)
|
|
|
|
return (T1)__vcipherlast((VectorType)state, (VectorType)key);
|
|
|
|
#elif defined(CRYPTOPP_GCC_VERSION)
|
|
|
|
return (T1)__builtin_crypto_vcipherlast((VectorType)state, (VectorType)key);
|
|
|
|
#else
|
|
|
|
CRYPTOPP_ASSERT(0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T1, class T2>
|
|
|
|
static inline T1 VectorDecrypt(const T1& state, const T2& key)
|
|
|
|
{
|
|
|
|
#if defined(CRYPTOPP_XLC_VERSION)
|
|
|
|
return (T1)__vncipher((VectorType)state, (VectorType)key);
|
|
|
|
#elif defined(CRYPTOPP_GCC_VERSION)
|
|
|
|
return (T1)__builtin_crypto_vncipher((VectorType)state, (VectorType)key);
|
|
|
|
#else
|
|
|
|
CRYPTOPP_ASSERT(0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T1, class T2>
|
|
|
|
static inline T1 VectorDecryptLast(const T1& state, const T2& key)
|
|
|
|
{
|
|
|
|
#if defined(CRYPTOPP_XLC_VERSION)
|
|
|
|
return (T1)__vncipherlast((VectorType)state, (VectorType)key);
|
|
|
|
#elif defined(CRYPTOPP_GCC_VERSION)
|
|
|
|
return (T1)__builtin_crypto_vncipherlast((VectorType)state, (VectorType)key);
|
|
|
|
#else
|
|
|
|
CRYPTOPP_ASSERT(0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // CRYPTOPP_ALTIVEC_AVAILABLE
|
|
|
|
|
|
|
|
NAMESPACE_END
|
|
|
|
|
|
|
|
#endif // CRYPTOPP_P8_VECTOR_H
|