mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
13 lines
339 B
C++
13 lines
339 B
C++
#ifndef SHAKEY_H
|
|
#define SHAKEY_H
|
|
#include<string>
|
|
|
|
namespace HashSM
|
|
{
|
|
std::wstring HashingAnnotation(std::wstring & wsAnnotation, const bool &bUnicodeConversionString = false);
|
|
bool HashComparison(const std::wstring& wsHashFirst,const std::wstring& wsHashSecond);
|
|
void RemovingSpaces(std::wstring& wsAnnotation);
|
|
}
|
|
|
|
#endif // SHAKEY_H
|