summaryrefslogtreecommitdiff
path: root/package/inc/EncryptionData.hxx
diff options
context:
space:
mode:
authorMikhail Voytenko <mav@openoffice.org>2011-03-24 13:44:49 +0100
committerMikhail Voytenko <mav@openoffice.org>2011-03-24 13:44:49 +0100
commit481a55dc3bbf3c97c828fa727f4c30f0d8ab171e (patch)
treea29bf2cc93a7ed15d2903dae903703f4fee6beac /package/inc/EncryptionData.hxx
parent0cdc1272fdfbf181b6f297185e0a02dddb912a1a (diff)
mav60: #164341# fix problems with the new implementation
Diffstat (limited to 'package/inc/EncryptionData.hxx')
-rw-r--r--package/inc/EncryptionData.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/package/inc/EncryptionData.hxx b/package/inc/EncryptionData.hxx
index a3df8b550768..549669b3feb1 100644
--- a/package/inc/EncryptionData.hxx
+++ b/package/inc/EncryptionData.hxx
@@ -56,13 +56,15 @@ public:
sal_Int32 m_nEncAlg;
sal_Int32 m_nCheckAlg;
sal_Int32 m_nDerivedKeySize;
+ sal_Int32 m_nStartKeyGenID;
- EncryptionData( const BaseEncryptionData& aData, const ::com::sun::star::uno::Sequence< sal_Int8 >& aKey, sal_Int32 nEncAlg, sal_Int32 nCheckAlg, sal_Int32 nDerivedKeySize )
+ EncryptionData( const BaseEncryptionData& aData, const ::com::sun::star::uno::Sequence< sal_Int8 >& aKey, sal_Int32 nEncAlg, sal_Int32 nCheckAlg, sal_Int32 nDerivedKeySize, sal_Int32 nStartKeyGenID )
: BaseEncryptionData( aData )
, m_aKey( aKey )
, m_nEncAlg( nEncAlg )
, m_nCheckAlg( nCheckAlg )
, m_nDerivedKeySize( nDerivedKeySize )
+ , m_nStartKeyGenID( nStartKeyGenID )
{}
EncryptionData( const EncryptionData& aData )
@@ -71,6 +73,7 @@ public:
, m_nEncAlg( aData.m_nEncAlg )
, m_nCheckAlg( aData.m_nCheckAlg )
, m_nDerivedKeySize( aData.m_nDerivedKeySize )
+ , m_nStartKeyGenID( aData.m_nStartKeyGenID )
{}
};