memgraph/src/auth/crypto.hpp

12 lines
213 B
C++
Raw Normal View History

#pragma once
#include <string>
namespace auth {
const std::string EncryptPassword(const std::string &password);
bool VerifyPassword(const std::string &password, const std::string &hash);
} // namespace auth