diff options
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/security/XDocumentDigitalSignatures.idl | 7 | ||||
-rw-r--r-- | offapi/com/sun/star/xml/crypto/XSecurityEnvironment.idl | 6 |
2 files changed, 6 insertions, 7 deletions
diff --git a/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl b/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl index 5ee5b9e44106..e725624e9e19 100644 --- a/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl +++ b/offapi/com/sun/star/security/XDocumentDigitalSignatures.idl @@ -119,18 +119,17 @@ interface XDocumentDigitalSignatures : com::sun::star::uno::XInterface void showCertificate( [in] com::sun::star::security::XCertificate Certificate ); - /** manages trusted sources (Authors and paths ) + /** manages trusted sources (Authors and paths ) */ - void manageTrustedSources(); boolean isAuthorTrusted( [in] com::sun::star::security::XCertificate Author ); boolean isLocationTrusted( [in] string Location ); - // These method should raise confirmation dialog, so it can not used from bad macros... + // These methods should raise a confirmation dialog, so they can not be misused from bad macros. void addAuthorToTrustedSources( [in] com::sun::star::security::XCertificate Author ); void addLocationToTrustedSources( [in] string Location ); - /** This method shows CertificateChooser dialog, used by document and PDF signing + /** This method shows the CertificateChooser dialog, used by document and PDF signing @since LibreOffice 5.3 */ diff --git a/offapi/com/sun/star/xml/crypto/XSecurityEnvironment.idl b/offapi/com/sun/star/xml/crypto/XSecurityEnvironment.idl index cfc6948d54e4..7227a4e9ad4d 100644 --- a/offapi/com/sun/star/xml/crypto/XSecurityEnvironment.idl +++ b/offapi/com/sun/star/xml/crypto/XSecurityEnvironment.idl @@ -35,7 +35,7 @@ module com { module sun { module star { module xml { module crypto { interface XSecurityEnvironment : com::sun::star::uno::XInterface { /** - * Get personal certificate from the environment + * Get personal certificates from the environment */ sequence< com::sun::star::security::XCertificate > getPersonalCertificates() raises( com::sun::star::uno::SecurityException ) ; @@ -45,7 +45,7 @@ interface XSecurityEnvironment : com::sun::star::uno::XInterface com::sun::star::security::XCertificate getCertificate( [in] string issuerName, [in] sequence< byte > serialNumber ) raises( com::sun::star::uno::SecurityException ) ; /** - * build certificate path from a certain certificate + * Build certificate path from a certain certificate */ sequence< com::sun::star::security::XCertificate > buildCertificatePath( [in] com::sun::star::security::XCertificate beginCert ) raises( com::sun::star::uno::SecurityException ) ; @@ -95,7 +95,7 @@ interface XSecurityEnvironment : com::sun::star::uno::XInterface long getCertificateCharacters( [in] com::sun::star::security::XCertificate xCertificate ) raises( com::sun::star::uno::SecurityException ) ; /** - * Get the Environment detail infos + * Get the Environment detail information */ string getSecurityEnvironmentInformation ( ); |