Bump version to 6.0-36
[LibreOffice.git] / xmlsecurity / source / framework / securityengine.cxx
blob3088d5a80b4b37b0ca7e1d2f290aa5388dd12452
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 .
21 #include <framework/securityengine.hxx>
22 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
25 SecurityEngine::SecurityEngine()
26 :m_nIdOfTemplateEC(-1),
27 m_nNumOfResolvedReferences(0),
28 m_nIdOfKeyEC(-1),
29 m_bMissionDone(false),
30 m_nSecurityId(-1),
31 m_nStatus(css::xml::crypto::SecurityOperationStatus_UNKNOWN)
35 /* XReferenceResolvedListener */
36 void SAL_CALL SecurityEngine::referenceResolved( sal_Int32 /*referenceId*/)
38 m_nNumOfResolvedReferences++;
39 tryToPerform();
42 /* XKeyCollector */
43 void SAL_CALL SecurityEngine::setKeyId( sal_Int32 id )
45 m_nIdOfKeyEC = id;
46 tryToPerform();
49 /* XMissionTaker */
50 sal_Bool SAL_CALL SecurityEngine::endMission( )
52 bool rc = m_bMissionDone;
54 if (!rc)
56 clearUp( );
58 notifyResultListener();
59 m_bMissionDone = true;
62 m_xResultListener = nullptr;
63 m_xSAXEventKeeper = nullptr;
65 return rc;
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */