12 lines
194 B
C++
12 lines
194 B
C++
#include <psemek/util/md5.hpp>
|
|
#include <psemek/util/md5_inl.hpp>
|
|
|
|
namespace psemek::util
|
|
{
|
|
|
|
std::array<std::uint32_t, 4> md5_hash(std::string_view data)
|
|
{
|
|
return md5_inl::hash(data);
|
|
}
|
|
|
|
}
|