Skip to content

Commit abf1ce6

Browse files
committed
Not dumping decrypted xml
1 parent 3eca1f6 commit abf1ce6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libs/libdecrypt/src/decryption.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ void Decryption::decryptFile() {
5757
std::string decrypted = decryptData(base64EncryptedLoaded, reinterpret_cast<const unsigned char*>(decryptedSessionKey.c_str()));
5858

5959
// Write the decrypted data to a file
60-
std::ofstream decryptedFile("decrypted.xml");
61-
decryptedFile << decrypted;
62-
decryptedFile.close();
60+
// std::ofstream decryptedFile("decrypted.xml");
61+
// decryptedFile << decrypted;
62+
// decryptedFile.close();
6363

6464
decryptedContent_ = decrypted;
6565
EVP_PKEY_free(privateKey);

0 commit comments

Comments
 (0)