2ecb660790
Reviewers: teon.banek, buda Reviewed By: teon.banek Subscribers: mtomic, pullbot Differential Revision: https://phabricator.memgraph.io/D1488
12 lines
213 B
C++
12 lines
213 B
C++
#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
|