mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 13:33:36 +00:00
12 lines
165 B
C++
12 lines
165 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class Hasher {
|
|
private:
|
|
std::string salt;
|
|
|
|
public:
|
|
Hasher(std::string& salt);
|
|
std::string getHash(std::string& name);
|
|
}; |