Certificate validation

This commit is contained in:
Jakub Melka
2020-06-14 18:40:42 +02:00
parent a319bd611b
commit 783aa8d007
8 changed files with 451 additions and 7 deletions

View File

@ -72,6 +72,9 @@ public:
/// Returns error message, if document reading was unsuccessfull
const QString& getErrorMessage() const { return m_errorMessage; }
/// Get source data of the document
const QByteArray& getSource() const { return m_source; }
private:
static constexpr const int FIND_NOT_FOUND_RESULT = -1;
@ -109,6 +112,9 @@ private:
/// Progress indicator
PDFProgress* m_progress;
/// Raw document data (byte array containing source data for created document)
QByteArray m_source;
};
} // namespace pdf