This commit is contained in:
HikikoMarmy
2025-04-24 11:19:35 +01:00
parent 9cf6dea79f
commit 5f8becc229
2 changed files with 4 additions and 5 deletions

View File

@@ -36,7 +36,7 @@ std::string RealmCrypt::encryptString( std::string &input )
rijndael aes;
auto result = aes.EncryptECB(
auto result = aes.EncryptECB(
reinterpret_cast< const uint8_t * >( input.c_str() ),
static_cast< uint32_t >( input.size() ),
default_sym_key.data()