m8
/
src
/
ob
/
crypto.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef OB_CRYPTO_HH
#define OB_CRYPTO_HH
#include <string>
namespace OB
{
namespace Crypto
{
std::string sha256(std::string const str);
} // namespace Crypto
} // namespace OB
#endif // OB_CRYPTO_HH