Util: apply latest clang-format
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-01-14 08:07:26 +01:00
parent 7c6e53f31b
commit 5d6b9b9b28
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

8
util.h
View File

@ -21,10 +21,12 @@ public:
CryptoPP::SHA3_256 sha3_256;
CryptoPP::StringSource str_src(
str_to_hash, true,
str_to_hash,
true,
new CryptoPP::HashFilter(
sha3_256, new CryptoPP::HexEncoder(
new CryptoPP::StringSink(digest), false)));
sha3_256,
new CryptoPP::HexEncoder(new CryptoPP::StringSink(digest),
false)));
return digest;
}