Whitespace check-in

pull/748/head
Jeffrey Walton 2018-11-18 12:31:44 -05:00
parent 59ba3b6aca
commit 70473f0cab
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 2 additions and 2 deletions

View File

@ -670,13 +670,13 @@ void BLAKE2s::Compress(const byte *input)
#if CRYPTOPP_POWER7_AVAILABLE #if CRYPTOPP_POWER7_AVAILABLE
if(HasPower7()) if(HasPower7())
{ {
// BLAKE2_Compress32_POWER7 compiled with -mcpu=power7 and -DCRYPTOPP_POWER7_AVAILABLE // BLAKE2_Compress32_POWER7 compiled with -mcpu=power7 and -DCRYPTOPP_POWER7_AVAILABLE
return BLAKE2_Compress32_POWER7(input, *m_state.data()); return BLAKE2_Compress32_POWER7(input, *m_state.data());
} }
#elif CRYPTOPP_ALTIVEC_AVAILABLE #elif CRYPTOPP_ALTIVEC_AVAILABLE
if(HasAltivec()) if(HasAltivec())
{ {
// BLAKE2_Compress32_POWER7 compiled with -mcpu=power4 and -DCRYPTOPP_ALTIVEC_AVAILABLE // BLAKE2_Compress32_POWER7 compiled with -mcpu=power4 and -DCRYPTOPP_ALTIVEC_AVAILABLE
return BLAKE2_Compress32_POWER7(input, *m_state.data()); return BLAKE2_Compress32_POWER7(input, *m_state.data());
} }
#endif #endif