mirror of
https://github.com/Lurkki14/tuxclocker.git
synced 2025-02-25 18:55:24 -06:00
11 lines
168 B
C++
11 lines
168 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace TuxClocker::Crypto {
|
|
|
|
std::string sha256(std::string s);
|
|
std::string md5(std::string s);
|
|
|
|
}; // namespace TuxClocker::Crypto
|