tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / offapi / com / sun / star / xml / crypto / XNSSInitializer.idl
blob1748c0c9e353be00dfe110eadb474f0aa21c6bff
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 module com { module sun { module star { module xml { module crypto {
22 /**
23 @since LibreOffice 4.0
25 interface XNSSInitializer {
26 interface ::com::sun::star::xml::crypto::XDigestContextSupplier;
27 interface ::com::sun::star::xml::crypto::XCipherContextSupplier;
29 /** the current path to the NSS databases
31 This attribute returns the current setting, based on the user selection
32 or automatic detection. This value can change until someone uses NSS
33 crypto functions, because just then LibreOffice initializes the NSS
34 library and the value stays fixed until LibreOffice is restarted!
36 @since LibreOffice 7.1
38 [attribute, readonly] string NSSPath;
40 /** the state of the NSS initialization
42 This attribute returns true, if the NSS library is initialized.
44 @see NSSPath
45 @since LibreOffice 7.1
47 [attribute, readonly] boolean IsNSSinitialized;
49 /** get the current profile list
51 @since LibreOffice 7.1
53 sequence<NSSProfile> getNSSProfiles();
56 } ; } ; } ; } ; } ;
59 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */