Use Altivec as minimum ISA for Blake2s

This commit is contained in:
Jeffrey Walton 2020-04-05 21:44:12 -04:00
parent e4ccdb90c0
commit 61513acb94
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -181,6 +181,10 @@ extern void BLAKE2_Compress32_NEON(const byte* input, BLAKE2s_State& state);
extern void BLAKE2_Compress64_NEON(const byte* input, BLAKE2b_State& state);
#endif
#if CRYPTOPP_ALTIVEC_AVAILABLE
extern void BLAKE2_Compress32_ALTIVEC(const byte* input, BLAKE2s_State& state);
#endif
#if CRYPTOPP_POWER8_AVAILABLE
extern void BLAKE2_Compress64_POWER8(const byte* input, BLAKE2b_State& state);
#endif