LibreOffice
LibreOffice 24.2 SDK API Reference
XDocumentDigitalSignatures.idl
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  * Licensed to the Apache Software Foundation (ASF) under one or more
12  * contributor license agreements. See the NOTICE file distributed
13  * with this work for additional information regarding copyright
14  * ownership. The ASF licenses this file to you under the Apache
15  * License, Version 2.0 (the "License"); you may not use this file
16  * except in compliance with the License. You may obtain a copy of
17  * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 
20 module com { module sun { module star { module security {
21 
31 {
36  boolean signDocumentContent( [in] ::com::sun::star::embed::XStorage xStorage,
37  [in] ::com::sun::star::io::XStream xSignStream);
38 
49  boolean signSignatureLine( [in] ::com::sun::star::embed::XStorage xStorage,
50  [in] ::com::sun::star::io::XStream xSignStream,
51  [in] string signatureLineId,
52  [in] ::com::sun::star::security::XCertificate xCertificate,
53  [in] ::com::sun::star::graphic::XGraphic xValidGraphic,
54  [in] ::com::sun::star::graphic::XGraphic xInvalidGraphic,
55  [in] string comment);
56 
61  sequence< com::sun::star::security::DocumentSignatureInformation > verifyDocumentContentSignatures(
62  [in] ::com::sun::star::embed::XStorage xStorage,
63  [in] ::com::sun::star::io::XInputStream xSignInStream );
64 
67  void showDocumentContentSignatures(
68  [in] ::com::sun::star::embed::XStorage xStorage,
69  [in] ::com::sun::star::io::XInputStream xSignInStream );
70 
74  string getDocumentContentSignatureDefaultStreamName();
75 
80  boolean signScriptingContent( [in] ::com::sun::star::embed::XStorage xStorage,
81  [in] ::com::sun::star::io::XStream xSignStream);
82 
87  sequence< com::sun::star::security::DocumentSignatureInformation > verifyScriptingContentSignatures(
88  [in] ::com::sun::star::embed::XStorage xStorage,
89  [in] ::com::sun::star::io::XInputStream xSignInStream );
90 
93  void showScriptingContentSignatures(
94  [in] ::com::sun::star::embed::XStorage xStorage,
95  [in] ::com::sun::star::io::XInputStream xSignInStream );
96 
100  string getScriptingContentSignatureDefaultStreamName();
101 
104  boolean signPackage( [in] ::com::sun::star::embed::XStorage Storage,
105  [in] ::com::sun::star::io::XStream xSignStream);
106 
111  sequence< com::sun::star::security::DocumentSignatureInformation > verifyPackageSignatures(
112  [in] ::com::sun::star::embed::XStorage Storage,
113  [in] ::com::sun::star::io::XInputStream xSignInStream );
114 
117  void showPackageSignatures(
118  [in] ::com::sun::star::embed::XStorage xStorage,
119  [in] ::com::sun::star::io::XInputStream xSignInStream );
120 
124  string getPackageSignatureDefaultStreamName();
125 
126 
127  void showCertificate( [in] com::sun::star::security::XCertificate Certificate );
128 
129 
132  void manageTrustedSources();
133  boolean isAuthorTrusted( [in] com::sun::star::security::XCertificate Author );
134  boolean isLocationTrusted( [in] string Location );
135 
136  // These methods should raise a confirmation dialog, so they can not be misused from bad macros.
137  void addAuthorToTrustedSources( [in] com::sun::star::security::XCertificate Author );
138  void addLocationToTrustedSources( [in] string Location );
139 
145  com::sun::star::security::XCertificate chooseCertificate( [out] string Description );
146 
152  com::sun::star::security::XCertificate chooseSigningCertificate( [out] string Description );
153 
159  com::sun::star::security::XCertificate selectSigningCertificate( [out] string Description );
160 
166  com::sun::star::security::XCertificate selectSigningCertificateWithType(
167  [in] CertificateKind certificateKind,
168  [out] string Description);
169 
175  sequence< com::sun::star::security::XCertificate > chooseEncryptionCertificate( );
176 
182  com::sun::star::security::XCertificate chooseCertificateWithProps( [out] sequence<::com::sun::star::beans::PropertyValue> Properties);
183 
188  boolean signDocumentWithCertificate([in] ::com::sun::star::security::XCertificate xCertificate,
189  [in] ::com::sun::star::embed::XStorage xStorage,
190  [in] ::com::sun::star::io::XStream xStream);
191 
196  void setParentWindow([in] ::com::sun::star::awt::XWindow xParentWindow);
197 
204  boolean signScriptingContentWithCertificate([in] ::com::sun::star::security::XCertificate xCertificate,
205  [in] ::com::sun::star::embed::XStorage xStorage,
206  [in] ::com::sun::star::io::XStream xStream);
207 
212  boolean signPackageWithCertificate([in] ::com::sun::star::security::XCertificate xCertificate,
213  [in] ::com::sun::star::embed::XStorage xStorage,
214  [in] ::com::sun::star::io::XStream xStream);
215 };
216 
217 } ; } ; } ; } ;
218 
219 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
This interface represents main storage functionality.
Definition: XStorage.idl:26
Definition: Ambiguous.idl:20
specifies the basic operations for a window component.
Definition: XWindow.idl:32
offers read and write access to the same stream.
Definition: XStream.idl:26
This interface acts as a container for the loaded graphic.
Definition: XGraphic.idl:37
CertificateKind
Enum definition of a certificate kind ( X509, OpenPGP )
Definition: CertificateKind.idl:17
This is the basic interface to read data from a stream.
Definition: XInputStream.idl:29
Interface for signing and verifying digital signatures in office documents.
Definition: XDocumentDigitalSignatures.idl:30
base interface of all UNO interfaces
Definition: XInterface.idl:45
Interface of a PKI Certificate.
Definition: XCertificate.idl:27