1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
28 #ifndef _XMLSIGNATURECONTEXT_MSCRYPTIMPL_HXX_
29 #define _XMLSIGNATURECONTEXT_MSCRYPTIMPL_HXX_
31 #include <sal/config.h>
32 #include <rtl/ustring.hxx>
33 #include <cppuhelper/factory.hxx>
34 #include <cppuhelper/implbase3.hxx>
35 #include <com/sun/star/uno/Exception.hpp>
37 #ifndef _COM_SUN_STAR_UNO_REFERENCE_HPP_
38 #include <com/sun/star/uno/Reference.hxx>
40 #include <com/sun/star/lang/XSingleServiceFactory.hpp>
42 #ifndef _COM_SUN_STAR_LANG_XSECVICEINFO_HPP_
43 #include <com/sun/star/lang/XServiceInfo.hpp>
45 #include <com/sun/star/lang/XInitialization.hpp>
46 #include <com/sun/star/lang/XUnoTunnel.hpp>
47 #include <com/sun/star/xml/crypto/XSecurityEnvironment.hpp>
48 #include <com/sun/star/xml/crypto/XXMLSecurityContext.hpp>
50 //#include "xmlsec/xmlsec.h"
52 class XMLSecurityContext_MSCryptImpl
: public ::cppu::WeakImplHelper3
<
53 ::com::sun::star::xml::crypto::XXMLSecurityContext
,
54 ::com::sun::star::lang::XInitialization
,
55 ::com::sun::star::lang::XServiceInfo
>
58 //xmlSecKeysMngrPtr m_pKeysMngr ;
59 ::com::sun::star::uno::Reference
< ::com::sun::star::xml::crypto::XSecurityEnvironment
> m_xSecurityEnvironment
;
60 ::com::sun::star::uno::Reference
< ::com::sun::star::lang::XMultiServiceFactory
> m_xServiceManager
;
63 XMLSecurityContext_MSCryptImpl( const ::com::sun::star::uno::Reference
< ::com::sun::star::lang::XMultiServiceFactory
>& aFactory
) ;
64 virtual ~XMLSecurityContext_MSCryptImpl() ;
66 //Methods from XXMLSecurityContext
67 virtual sal_Int32 SAL_CALL
addSecurityEnvironment(
68 const ::com::sun::star::uno::Reference
< ::com::sun::star::xml::crypto::XSecurityEnvironment
>& aSecurityEnvironment
69 ) throw (::com::sun::star::security::SecurityInfrastructureException
, ::com::sun::star::uno::RuntimeException
);
71 virtual ::sal_Int32 SAL_CALL
getSecurityEnvironmentNumber( )
72 throw (::com::sun::star::uno::RuntimeException
);
74 virtual ::com::sun::star::uno::Reference
<
75 ::com::sun::star::xml::crypto::XSecurityEnvironment
> SAL_CALL
76 getSecurityEnvironmentByIndex( ::sal_Int32 index
)
77 throw (::com::sun::star::uno::RuntimeException
);
79 virtual ::com::sun::star::uno::Reference
<
80 ::com::sun::star::xml::crypto::XSecurityEnvironment
> SAL_CALL
81 getSecurityEnvironment( )
82 throw (::com::sun::star::uno::RuntimeException
);
84 virtual ::sal_Int32 SAL_CALL
getDefaultSecurityEnvironmentIndex( )
85 throw (::com::sun::star::uno::RuntimeException
);
87 virtual void SAL_CALL
setDefaultSecurityEnvironmentIndex( sal_Int32 nDefaultEnvIndex
)
88 throw (::com::sun::star::uno::RuntimeException
);
91 virtual void SAL_CALL
setSecurityEnvironment(
92 const ::com::sun::star::uno::Reference
< ::com::sun::star::xml::crypto::XSecurityEnvironment
>& aSecurityEnvironment
93 ) throw( com::sun::star::security::SecurityInfrastructureException
) ;
95 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::xml::crypto::XSecurityEnvironment
> SAL_CALL
getSecurityEnvironment()
96 throw(::com::sun::star::uno::RuntimeException
);
99 //Methods from XInitialization
100 virtual void SAL_CALL
initialize(
101 const ::com::sun::star::uno::Sequence
< ::com::sun::star::uno::Any
>& aArguments
102 ) throw( ::com::sun::star::uno::Exception
, ::com::sun::star::uno::RuntimeException
) ;
104 //Methods from XServiceInfo
105 virtual ::rtl::OUString SAL_CALL
getImplementationName() throw( ::com::sun::star::uno::RuntimeException
) ;
107 virtual sal_Bool SAL_CALL
supportsService(
108 const ::rtl::OUString
& ServiceName
109 ) throw( ::com::sun::star::uno::RuntimeException
) ;
111 virtual ::com::sun::star::uno::Sequence
< ::rtl::OUString
> SAL_CALL
getSupportedServiceNames() throw( ::com::sun::star::uno::RuntimeException
) ;
113 //Helper for XServiceInfo
114 static ::com::sun::star::uno::Sequence
< ::rtl::OUString
> impl_getSupportedServiceNames() ;
116 static ::rtl::OUString
impl_getImplementationName() throw( ::com::sun::star::uno::RuntimeException
) ;
118 //Helper for registry
119 static ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XInterface
> SAL_CALL
impl_createInstance( const ::com::sun::star::uno::Reference
< ::com::sun::star::lang::XMultiServiceFactory
>& aServiceManager
) throw( ::com::sun::star::uno::RuntimeException
) ;
121 static ::com::sun::star::uno::Reference
< ::com::sun::star::lang::XSingleServiceFactory
> impl_createFactory( const ::com::sun::star::uno::Reference
< ::com::sun::star::lang::XMultiServiceFactory
>& aServiceManager
) ;
124 //Methods from XUnoTunnel
125 virtual sal_Int64 SAL_CALL
getSomething( const ::com::sun::star::uno::Sequence
< sal_Int8
>& aIdentifier
)
126 throw (com::sun::star::uno::RuntimeException
);
128 static const ::com::sun::star::uno::Sequence
< sal_Int8
>& getUnoTunnelId() ;
129 static XMLSecurityContext_MSCryptImpl
* getImplementation( const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XInterface
> xObj
) ;
133 //virtual xmlSecKeysMngrPtr keysManager() throw( ::com::sun::star::uno::Exception , ::com::sun::star::uno::RuntimeException ) ;
136 #endif // _XMLSIGNATURECONTEXT_MSCRYPTIMPL_HXX_