12 lines
150 B
C++
12 lines
150 B
C++
#ifndef NNTPCHAN_SHA1_HPP
|
|
#define NNTPCHAN_SHA1_HPP
|
|
|
|
#include <string>
|
|
|
|
namespace nntpchan
|
|
{
|
|
std::string sha1_hex(const std::string &data);
|
|
}
|
|
|
|
#endif
|