From 5d6b9b9b28200edc93aacfa183569664fb2ce4a0 Mon Sep 17 00:00:00 2001 From: surtur Date: Fri, 14 Jan 2022 08:07:26 +0100 Subject: [PATCH] Util: apply latest clang-format --- util.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/util.h b/util.h index 2923c91..7f93f29 100644 --- a/util.h +++ b/util.h @@ -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; }