12 lines
370 B
C++
12 lines
370 B
C++
#include <iostream>
|
|||
|
|
#include <QString>
|
||
|
|
#include <QByteArray>
|
||
|
|
#include "src/core/models/account.h"
|
||
|
|
int main() {
|
||
|
|
QString encrypted = "cm0fVbv8u452ExACy9o=";
|
||
|
|
QString decrypted = Account::decryptPassword(encrypted);
|
||
|
|
std::cout << "Encrypted: " << encrypted.toStdString() << "\n";
|
||
|
|
std::cout << "Decrypted: " << decrypted.toStdString() << "\n";
|
||
|
|
return 0;
|
||
|
|
}
|