From c38e1ce43be76b76e08df4c7b0f18d8a300844cc Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 8 Aug 2025 09:15:40 -0500 Subject: [PATCH] fix --- repertory/librepertory/include/rpc/common.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repertory/librepertory/include/rpc/common.hpp b/repertory/librepertory/include/rpc/common.hpp index 826def26..85e40a5a 100644 --- a/repertory/librepertory/include/rpc/common.hpp +++ b/repertory/librepertory/include/rpc/common.hpp @@ -32,7 +32,7 @@ namespace repertory::rpc { [[nodiscard]] auto create_password_hash(std::string_view password) -> std::string { return utils::collection::to_hex_string( - utils::hash::create_hash_blake2b_384(password)); + utils::encryption::create_hash_blake2b_384(password)); } [[nodiscard]] auto check_authorization(const auto &cfg,