1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-05-17 14:47:45 +00:00
astra/launcher/include/encryptedarg.h
Joshua Goins e866164a4a Parse ticket time as qint64 instead of regular int
This wasn't the issue, but it's a good idea not to truncate this anyway.
2025-05-04 16:36:27 -04:00

9 lines
263 B
C++

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <QString>
QString encryptGameArg(const QString &arg);
std::pair<QString, int> encryptSteamTicket(QString ticket, qint64 time);