diff options
author | Katarina Behrens <Katarina.Behrens@cib.de> | 2017-08-22 15:28:39 +0200 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2017-09-03 01:09:48 +0200 |
commit | 4f6bf3d64cf3fcbe92be3ceb4b572ad038c131a8 (patch) | |
tree | c758c502174261d63a3f5deeb5c8b81ee5573eaf /offapi | |
parent | 7a9fb40cb07de8c2ea33f92735be5008d30d6704 (diff) |
gpg4libre: Recycle certificate selection dialog for encryption
Change-Id: I699ecff1f62b3dae7ac275823c6721810589c4cf
Reviewed-on: https://gerrit.libreoffice.org/41507
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/security/XDocumentDigitalSignatures.idl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl b/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl index e725624e9e19..177c97b8fa46 100644 --- a/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl +++ b/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl @@ -130,11 +130,26 @@ interface XDocumentDigitalSignatures : com::sun::star::uno::XInterface void addLocationToTrustedSources( [in] string Location ); /** This method shows the CertificateChooser dialog, used by document and PDF signing + Shows only private certificates @since LibreOffice 5.3 */ com::sun::star::security::XCertificate chooseCertificate( [out] string Description ); + /** This is an alias for 'chooseCertificate', shows the CertificateChooser dialog + with private certificates + + @since LibreOffice 6.0 + */ + com::sun::star::security::XCertificate chooseSigningCertificate( [out] string Description ); + + /** This method shows the CertificateChooser dialog with all certificates, private and + other people's. Useful when choosing certificate/key for encryption + + @since LibreOffice 6.0 + */ + com::sun::star::security::XCertificate chooseEncryptionCertificate( [out] string Description ); + } ; } ; } ; } ; } ; |