diff options
Diffstat (limited to 'src/utils/cpp/verify_hash.hpp')
-rw-r--r-- | src/utils/cpp/verify_hash.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/cpp/verify_hash.hpp b/src/utils/cpp/verify_hash.hpp index e827680d..f105eb2b 100644 --- a/src/utils/cpp/verify_hash.hpp +++ b/src/utils/cpp/verify_hash.hpp @@ -27,7 +27,7 @@ /// \returns Nullopt on success, error message on failure. [[nodiscard]] static inline auto IsAHash(std::string const& s) noexcept -> std::optional<std::string> { - if (!std::all_of(s.begin(), s.end(), [](unsigned char c) { + if (not std::all_of(s.begin(), s.end(), [](unsigned char c) { return std::isxdigit(c); })) { return fmt::format("Invalid hash {}", s); |