summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2017-12-13 18:39:10 +0100
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2017-12-19 08:20:48 +0100
commit9bf4d471928036cdc4c0c3f6e8d7a42ecdbd032a (patch)
tree1356cf212d267fdc13d88e0e672c3d2da43457dd /unotools
parent253c11a0c31a1034a5b90e0f3389301a681fc07a (diff)
Read/write preferred GPG signing/encryption keys
Reviewed-on: https://gerrit.libreoffice.org/46692 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de> (cherry picked from commit df4fac1dbce087bbd01bbec242b93c72edcef74b) Change-Id: I3e21469c5f4c4f199407bbe9faba2e2ddca531b3 Reviewed-on: https://gerrit.libreoffice.org/46760 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/config/useroptions.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/unotools/source/config/useroptions.cxx b/unotools/source/config/useroptions.cxx
index 31ce8c9893d0..e19168da2885 100644
--- a/unotools/source/config/useroptions.cxx
+++ b/unotools/source/config/useroptions.cxx
@@ -65,7 +65,9 @@ static o3tl::enumarray<UserOptToken, char const *> vOptionNames = {
"initials", // UserOptToken::ID
"postalcode", // UserOptToken::Zip
"fathersname", // UserOptToken::FathersName
- "apartment" // UserOptToken::Apartment
+ "apartment", // UserOptToken::Apartment
+ "signingkey", // UserOptToken::SigningKey
+ "encryptionkey" // UserOptToken::EncryptionKey
};
std::weak_ptr<SvtUserOptions::Impl> SvtUserOptions::xSharedImpl;
@@ -276,6 +278,8 @@ OUString SvtUserOptions::GetTelephoneHome () const { return GetToken(UserOptTok
OUString SvtUserOptions::GetTelephoneWork () const { return GetToken(UserOptToken::TelephoneWork); }
OUString SvtUserOptions::GetFax () const { return GetToken(UserOptToken::Fax); }
OUString SvtUserOptions::GetEmail () const { return GetToken(UserOptToken::Email); }
+OUString SvtUserOptions::GetSigningKey () const { return GetToken(UserOptToken::SigningKey); }
+OUString SvtUserOptions::GetEncryptionKey () const { return GetToken(UserOptToken::EncryptionKey); }
bool SvtUserOptions::IsTokenReadonly (UserOptToken nToken) const
{