diff --git a/xmlsecurity/source/framework/decryptorimpl.hxx b/xmlsecurity/source/framework/decryptorimpl.hxx index 52e40f02b391..e86aa81b8827 100644 --- a/xmlsecurity/source/framework/decryptorimpl.hxx +++ b/xmlsecurity/source/framework/decryptorimpl.hxx @@ -2,9 +2,9 @@ * * $RCSfile: decryptorimpl.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: mt $ $Date: 2004-07-12 13:15:22 $ + * last change: $Author: vg $ $Date: 2005-03-10 18:06:24 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -68,6 +68,9 @@ #ifndef _COM_SUN_STAR_XML_CRYPTO_SAX_XDECRYPTIONRESULTLISTENER_HPP_ #include #endif +#ifndef _COM_SUN_STAR_XML_CRYPTO_XXMLSECURITYCONTEXT_HPP_ +#include +#endif #ifndef _COM_SUN_STAR_LANG_XINITIALIZATION_HPP_ #include #endif @@ -118,6 +121,9 @@ private: */ bool m_bDecryptionSucceed; + com::sun::star::uno::Reference< + com::sun::star::xml::crypto::XXMLSecurityContext > m_xXMLSecurityContext; + virtual void notifyResultListener() const throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException); virtual bool checkReady() const; diff --git a/xmlsecurity/source/framework/encryptorimpl.hxx b/xmlsecurity/source/framework/encryptorimpl.hxx index 4977cdb714a3..67b0720fc31c 100644 --- a/xmlsecurity/source/framework/encryptorimpl.hxx +++ b/xmlsecurity/source/framework/encryptorimpl.hxx @@ -2,9 +2,9 @@ * * $RCSfile: encryptorimpl.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: mt $ $Date: 2004-07-12 13:15:22 $ + * last change: $Author: vg $ $Date: 2005-03-10 18:06:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -71,6 +71,9 @@ #ifndef _COM_SUN_STAR_XML_CRYPTO_SAX_XSIGNATURECOLLECTOR_HPP_ #include #endif +#ifndef _COM_SUN_STAR_XML_CRYPTO_XSECURITYENVIRONMENT_HPP_ +#include +#endif #ifndef _COM_SUN_STAR_LANG_XINITIALIZATION_HPP_ #include #endif @@ -126,6 +129,9 @@ private: */ bool m_bEncryptionSucceed; + com::sun::star::uno::Reference< + com::sun::star::xml::crypto::XSecurityEnvironment > m_xSecurityEnvironment; + virtual void notifyResultListener() const throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException); virtual bool checkReady() const;