We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3eca1f6 commit abf1ce6Copy full SHA for abf1ce6
libs/libdecrypt/src/decryption.cpp
@@ -57,9 +57,9 @@ void Decryption::decryptFile() {
57
std::string decrypted = decryptData(base64EncryptedLoaded, reinterpret_cast<const unsigned char*>(decryptedSessionKey.c_str()));
58
59
// Write the decrypted data to a file
60
- std::ofstream decryptedFile("decrypted.xml");
61
- decryptedFile << decrypted;
62
- decryptedFile.close();
+ // std::ofstream decryptedFile("decrypted.xml");
+ // decryptedFile << decrypted;
+ // decryptedFile.close();
63
64
decryptedContent_ = decrypted;
65
EVP_PKEY_free(privateKey);
0 commit comments