aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_encryption.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDF_encryption.cc')
-rw-r--r--libqpdf/QPDF_encryption.cc18
1 files changed, 17 insertions, 1 deletions
diff --git a/libqpdf/QPDF_encryption.cc b/libqpdf/QPDF_encryption.cc
index 00766b60..2e0e59e7 100644
--- a/libqpdf/QPDF_encryption.cc
+++ b/libqpdf/QPDF_encryption.cc
@@ -443,7 +443,23 @@ QPDF::compute_encryption_O_U(
DLL_EXPORT
std::string const&
-QPDF::getUserPassword() const
+QPDF::getPaddedUserPassword() const
{
return this->user_password;
}
+
+DLL_EXPORT
+std::string
+QPDF::getTrimmedUserPassword() const
+{
+ std::string result = this->user_password;
+ trim_user_password(result);
+ return result;
+}
+
+DLL_EXPORT
+bool
+QPDF::isEncrypted() const
+{
+ return this->encrypted;
+}