mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
16 lines
299 B
C
16 lines
299 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
|
||
|
namespace MiniEngine
|
||
|
{
|
||
|
|
||
|
namespace Test
|
||
|
{
|
||
|
|
||
|
std::string GetMD5(unsigned char* buffer,unsigned int bufferLen);
|
||
|
void GetMD5Raw(unsigned char* buffer,unsigned int bufferLen,unsigned char* outbuff);
|
||
|
|
||
|
}/// End of namespace MiniEngine::Test
|
||
|
|
||
|
}/// End of namespace MiniEngine
|