Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/KdbxReader.h')
-rw-r--r--src/format/KdbxReader.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/format/KdbxReader.h b/src/format/KdbxReader.h
index 9a500c3f6..53e9093ac 100644
--- a/src/format/KdbxReader.h
+++ b/src/format/KdbxReader.h
@@ -45,9 +45,6 @@ public:
bool hasError() const;
QString errorString() const;
- bool saveXml() const;
- void setSaveXml(bool save);
- QByteArray xmlData() const;
KeePass2::ProtectedStreamAlgo protectedStreamAlgo() const;
protected:
@@ -86,8 +83,6 @@ protected:
void raiseError(const QString& errorMessage);
- void decryptXmlInnerStream(QByteArray& xmlOutput, Database* db) const;
-
quint32 m_kdbxVersion = 0;
QByteArray m_masterSeed;
@@ -96,13 +91,10 @@ protected:
QByteArray m_protectedStreamKey;
KeePass2::ProtectedStreamAlgo m_irsAlgo = KeePass2::ProtectedStreamAlgo::InvalidProtectedStreamAlgo;
- QByteArray m_xmlData;
-
private:
QPair<quint32, quint32> m_kdbxSignature;
QPointer<Database> m_db;
- bool m_saveXml = false;
bool m_error = false;
QString m_errorStr = "";
};