mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
add param names to the correct place this time!
Some checks failed
Build Binaries / Build Windows (push) Has been cancelled
Build Binaries / Build macOS (push) Has been cancelled
Build Binaries / Build Android (64-bit) (push) Has been cancelled
Build Binaries / Build Android (32-bit) (push) Has been cancelled
Check CHANGELOG.md / Check CHANGELOG.md (push) Has been cancelled
Build Binaries / Publish (push) Has been cancelled
Some checks failed
Build Binaries / Build Windows (push) Has been cancelled
Build Binaries / Build macOS (push) Has been cancelled
Build Binaries / Build Android (64-bit) (push) Has been cancelled
Build Binaries / Build Android (32-bit) (push) Has been cancelled
Check CHANGELOG.md / Check CHANGELOG.md (push) Has been cancelled
Build Binaries / Publish (push) Has been cancelled
This commit is contained in:
parent
ed97f3b040
commit
df24b24c44
1 changed files with 5 additions and 5 deletions
|
@ -155,12 +155,12 @@ namespace cocos2d
|
|||
static gd::string base64EncodeEnc(gd::string const&, gd::string);
|
||||
static gd::string base64URLDecode(gd::string const&);
|
||||
static gd::string base64URLEncode(gd::string const&);
|
||||
static int ccDeflateMemory(unsigned char*, unsigned int, unsigned char**);
|
||||
static int ccDeflateMemory(unsigned char* data, unsigned int size, unsigned char** out);
|
||||
static int ccDeflateMemoryWithHint(unsigned char*, unsigned int, unsigned char**, unsigned int);
|
||||
static gd::string compressString(gd::string const&, bool, int);
|
||||
static gd::string decompressString(gd::string const&, bool, int);
|
||||
static gd::string decompressString2(unsigned char*, bool, int, int);
|
||||
static gd::string encryptDecrypt(gd::string const&, int);
|
||||
static gd::string compressString(gd::string const& data, bool encrypt, int encryptionKey);
|
||||
static gd::string decompressString(gd::string const& data, bool encrypt, int encryptionKey);
|
||||
static gd::string decompressString2(unsigned char* data, bool encrypt, int size, int encryptionKey);
|
||||
static gd::string encryptDecrypt(gd::string const& data, int encryptionKey);
|
||||
static gd::string encryptDecryptWKey(gd::string const&, gd::string);
|
||||
static unsigned char hexToChar(const gd::string&);
|
||||
static gd::string urlDecode(const gd::string&);
|
||||
|
|
Loading…
Reference in a new issue