mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-22 20:47:45 +00:00
Call physis_blowfish_free in encryptGameArg
This commit is contained in:
parent
99555830d6
commit
9d9ab245da
1 changed files with 3 additions and 1 deletions
|
@ -66,7 +66,7 @@ QString encryptGameArg(const QString &arg)
|
||||||
char buffer[9]{};
|
char buffer[9]{};
|
||||||
sprintf(buffer, "%08x", key);
|
sprintf(buffer, "%08x", key);
|
||||||
|
|
||||||
Blowfish const *blowfish = physis_blowfish_initialize(reinterpret_cast<uint8_t *>(buffer), 9);
|
Blowfish *blowfish = physis_blowfish_initialize(reinterpret_cast<uint8_t *>(buffer), 9);
|
||||||
|
|
||||||
uint8_t *out_data = nullptr;
|
uint8_t *out_data = nullptr;
|
||||||
uint32_t out_size = 0;
|
uint32_t out_size = 0;
|
||||||
|
@ -80,5 +80,7 @@ QString encryptGameArg(const QString &arg)
|
||||||
const QString base64 = QString::fromUtf8(encryptedArg.toBase64(QByteArray::Base64Option::Base64UrlEncoding | QByteArray::Base64Option::KeepTrailingEquals));
|
const QString base64 = QString::fromUtf8(encryptedArg.toBase64(QByteArray::Base64Option::Base64UrlEncoding | QByteArray::Base64Option::KeepTrailingEquals));
|
||||||
const char checksum = GetChecksum(key);
|
const char checksum = GetChecksum(key);
|
||||||
|
|
||||||
|
physis_blowfish_free(blowfish);
|
||||||
|
|
||||||
return QStringLiteral("//**sqex0003%1%2**//").arg(base64, QString(QLatin1Char(checksum)));
|
return QStringLiteral("//**sqex0003%1%2**//").arg(base64, QString(QLatin1Char(checksum)));
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue