1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-05 16:37:12 +02:00

Initial preparations for CURL and Discord integration.

This commit is contained in:
Sandu Liviu Catalin
2021-01-27 07:27:48 +02:00
parent 8257eb61d6
commit 95705e87c8
1751 changed files with 440547 additions and 854 deletions

View File

@ -98,7 +98,7 @@ String AES256::Encrypt(CSStr data)
aes256_encrypt_ecb(&m_Context, reinterpret_cast< Uint8 * >(&str[n]));
}
// Return ownership of the encrypted string
return std::move(str);
return str;
}
// ------------------------------------------------------------------------------------------------
@ -127,7 +127,7 @@ String AES256::Decrypt(CSStr data)
str.pop_back();
}
// Return ownership of the encrypted string
return std::move(str);
return str;
}
// ================================================================================================