Files
Leviathan/Library/Internal/include/cipher/XStrZlibWithSimpleCipherUtil.h
2026-06-01 12:46:52 +02:00

11 lines
173 B
C++

#pragma once
#include <string>
struct XStrZlibWithSimpleCipherUtil
{
static std::string Encrypt( const char * str );
static std::string Decrypt( const char * str );
};