summaryrefslogtreecommitdiff
path: root/blake2.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-11-18 12:31:44 -0500
committerJeffrey Walton <noloader@gmail.com>2018-11-18 12:31:44 -0500
commit70473f0cabf91ac059fdc92e047f695c71e04f89 (patch)
tree14f603c52e514ad6643977aef39b7781449fa34a /blake2.cpp
parent59ba3b6aca10b7136279038bbcd21f271f9a677f (diff)
downloadcryptopp-git-70473f0cabf91ac059fdc92e047f695c71e04f89.tar.gz
Whitespace check-in
Diffstat (limited to 'blake2.cpp')
-rw-r--r--blake2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/blake2.cpp b/blake2.cpp
index 9eb6997b..79b79c82 100644
--- a/blake2.cpp
+++ b/blake2.cpp
@@ -670,13 +670,13 @@ void BLAKE2s::Compress(const byte *input)
#if CRYPTOPP_POWER7_AVAILABLE
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());
}
#elif CRYPTOPP_ALTIVEC_AVAILABLE
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());
}
#endif