Kaydet (Commit) 7ca8a404 authored tarafından Jürgen Schmidt's avatar Jürgen Schmidt

#120456# merge fix from AOO34 branch

üst 820052f7
pk package : cppu cppuhelper comphelper ucbhelper sal ZLIB:zlib LIBXSLT:libxslt NULL pk package : cppu cppuhelper comphelper ucbhelper sal sax ZLIB:zlib LIBXSLT:libxslt NULL
pk package usr1 - all pk_mkout NULL pk package usr1 - all pk_mkout NULL
pk package\inc nmake - all pk_inc NULL pk package\inc nmake - all pk_inc NULL
pk package\source\zipapi nmake - all pk_zipapi pk_inc NULL pk package\source\zipapi nmake - all pk_zipapi pk_inc NULL
......
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_package.hxx"
#include "Base64Codec.hxx"
#include <rtl/ustrbuf.hxx>
#include <osl/diagnose.h>
using namespace rtl;
using namespace osl;
using namespace com::sun::star;
const
sal_Char aBase64EncodeTable[] =
{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/' };
const
sal_uInt8 aBase64DecodeTable[] =
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 0-15
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 16-31
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 0, 0, 0, 63, // 32-47
// + /
52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 0, 0, 0, 0, 0, 0, // 48-63
// 0 1 2 3 4 5 6 7 8 9 =
0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, // 64-79
// A B C D E F G H I J K L M N O
15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 0, 0, 0, // 80-95
// P Q R S T U V W X Y Z
0, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, // 96-111
// a b c d e f g h i j k l m n o
41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 0, 0, 0, 0, 0, // 112-127
// p q r s t u v w x y z
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
void ThreeByteToFourByte (const sal_uInt8* pBuffer, const sal_Int32 nStart, const sal_Int32 nFullLen, rtl::OUStringBuffer& sBuffer)
{
sal_Int32 nLen(nFullLen - nStart);
if (nLen > 3)
nLen = 3;
if (nLen == 0)
{
sBuffer.setLength(0);
return;
}
sal_Int32 nBinaer;
switch (nLen)
{
case 1:
{
nBinaer = ((sal_uInt8)pBuffer[nStart + 0]) << 16;
}
break;
case 2:
{
nBinaer = (((sal_uInt8)pBuffer[nStart + 0]) << 16) +
(((sal_uInt8)pBuffer[nStart + 1]) << 8);
}
break;
default:
{
nBinaer = (((sal_uInt8)pBuffer[nStart + 0]) << 16) +
(((sal_uInt8)pBuffer[nStart + 1]) << 8) +
((sal_uInt8)pBuffer[nStart + 2]);
}
break;
}
sBuffer.appendAscii("====");
sal_uInt8 nIndex = static_cast< sal_uInt8 >((nBinaer & 0xFC0000) >> 18);
sBuffer.setCharAt(0, aBase64EncodeTable [nIndex]);
nIndex = static_cast< sal_uInt8 >((nBinaer & 0x3F000) >> 12);
sBuffer.setCharAt(1, aBase64EncodeTable [nIndex]);
if (nLen == 1)
return;
nIndex = static_cast< sal_uInt8 >((nBinaer & 0xFC0) >> 6);
sBuffer.setCharAt(2, aBase64EncodeTable [nIndex]);
if (nLen == 2)
return;
nIndex = static_cast< sal_uInt8 >(nBinaer & 0x3F);
sBuffer.setCharAt(3, aBase64EncodeTable [nIndex]);
}
void Base64Codec::encodeBase64(rtl::OUStringBuffer& aStrBuffer, const uno::Sequence < sal_Int8 >& aPass)
{
sal_Int32 i(0);
sal_Int32 nBufferLength(aPass.getLength());
const sal_uInt8* pBuffer = reinterpret_cast< const sal_uInt8* >( aPass.getConstArray() );
while (i < nBufferLength)
{
rtl::OUStringBuffer sBuffer;
ThreeByteToFourByte (pBuffer, i, nBufferLength, sBuffer);
aStrBuffer.append(sBuffer);
i += 3;
}
}
const rtl::OUString s2equal(RTL_CONSTASCII_USTRINGPARAM("=="));
const rtl::OUString s1equal(RTL_CONSTASCII_USTRINGPARAM("="));
void FourByteToThreeByte (sal_uInt8* pBuffer, sal_Int32& nLength, const sal_Int32 nStart, const rtl::OUString& sString)
{
nLength = 0;
sal_Int32 nLen (sString.getLength());
OSL_ASSERT( nLen == 4 );
if (nLen != 4)
return;
if (sString.indexOf(s2equal) == 2)
nLength = 1;
else if (sString.indexOf(s1equal) == 3)
nLength = 2;
else
nLength = 3;
sal_Int32 nBinaer ((aBase64DecodeTable [sString [0]] << 18) +
(aBase64DecodeTable [sString [1]] << 12) +
(aBase64DecodeTable [sString [2]] << 6) +
(aBase64DecodeTable [sString [3]]));
sal_uInt8 OneByte = static_cast< sal_uInt8 >((nBinaer & 0xFF0000) >> 16);
pBuffer[nStart + 0] = (sal_uInt8)OneByte;
if (nLength == 1)
return;
OneByte = static_cast< sal_uInt8 >((nBinaer & 0xFF00) >> 8);
pBuffer[nStart + 1] = OneByte;
if (nLength == 2)
return;
OneByte = static_cast< sal_uInt8 >(nBinaer & 0xFF);
pBuffer[nStart + 2] = OneByte;
}
void Base64Codec::decodeBase64(uno::Sequence< sal_Int8 >& aBuffer, const rtl::OUString& sBuffer)
{
sal_Int32 nFirstLength((sBuffer.getLength() / 4) * 3);
sal_uInt8* pBuffer = new sal_uInt8[nFirstLength];
sal_Int32 nSecondLength(0);
sal_Int32 nLength(0);
sal_Int32 i = 0;
sal_Int32 k = 0;
while (i < sBuffer.getLength())
{
FourByteToThreeByte (pBuffer, nLength, k, sBuffer.copy(i, 4));
nSecondLength += nLength;
nLength = 0;
i += 4;
k += 3;
}
aBuffer = uno::Sequence<sal_Int8>( reinterpret_cast< sal_Int8* >( pBuffer ), nSecondLength );
delete[] pBuffer;
}
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef _BASE64_CODEC_HXX
#define _BASE64_CODEC_HXX
#include <com/sun/star/uno/Sequence.hxx>
namespace rtl
{
class OUString;
class OUStringBuffer;
}
class Base64Codec
{
public:
static void encodeBase64(rtl::OUStringBuffer& aStrBuffer, const com::sun::star::uno::Sequence<sal_Int8>& aPass);
static void decodeBase64(com::sun::star::uno::Sequence<sal_Int8>& aPass, const rtl::OUString& sBuffer);
};
#endif
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
#include <ManifestDefines.hxx> #include <ManifestDefines.hxx>
#include <ManifestExport.hxx> #include <ManifestExport.hxx>
#include <Base64Codec.hxx> #include <sax/tools/converter.hxx>
#include <rtl/ustrbuf.hxx> #include <rtl/ustrbuf.hxx>
#include <comphelper/documentconstants.hxx> #include <comphelper/documentconstants.hxx>
...@@ -273,7 +273,7 @@ ManifestExport::ManifestExport( uno::Reference< xml::sax::XDocumentHandler > xHa ...@@ -273,7 +273,7 @@ ManifestExport::ManifestExport( uno::Reference< xml::sax::XDocumentHandler > xHa
pNewAttrList->AddAttribute ( sChecksumTypeAttribute, sCdataAttribute, sChecksumType ); pNewAttrList->AddAttribute ( sChecksumTypeAttribute, sCdataAttribute, sChecksumType );
*pDigest >>= aSequence; *pDigest >>= aSequence;
Base64Codec::encodeBase64( aBuffer, aSequence ); ::sax::Converter::encodeBase64( aBuffer, aSequence );
pNewAttrList->AddAttribute ( sChecksumAttribute, sCdataAttribute, aBuffer.makeStringAndClear() ); pNewAttrList->AddAttribute ( sChecksumAttribute, sCdataAttribute, aBuffer.makeStringAndClear() );
xHandler->startElement( sEncryptionDataElement , xNewAttrList); xHandler->startElement( sEncryptionDataElement , xNewAttrList);
...@@ -306,7 +306,7 @@ ManifestExport::ManifestExport( uno::Reference< xml::sax::XDocumentHandler > xHa ...@@ -306,7 +306,7 @@ ManifestExport::ManifestExport( uno::Reference< xml::sax::XDocumentHandler > xHa
pNewAttrList->AddAttribute ( sAlgorithmNameAttribute, sCdataAttribute, sEncAlgName ); pNewAttrList->AddAttribute ( sAlgorithmNameAttribute, sCdataAttribute, sEncAlgName );
*pVector >>= aSequence; *pVector >>= aSequence;
Base64Codec::encodeBase64 ( aBuffer, aSequence ); ::sax::Converter::encodeBase64 ( aBuffer, aSequence );
pNewAttrList->AddAttribute ( sInitialisationVectorAttribute, sCdataAttribute, aBuffer.makeStringAndClear() ); pNewAttrList->AddAttribute ( sInitialisationVectorAttribute, sCdataAttribute, aBuffer.makeStringAndClear() );
xHandler->ignorableWhitespace ( sWhiteSpace ); xHandler->ignorableWhitespace ( sWhiteSpace );
...@@ -332,7 +332,7 @@ ManifestExport::ManifestExport( uno::Reference< xml::sax::XDocumentHandler > xHa ...@@ -332,7 +332,7 @@ ManifestExport::ManifestExport( uno::Reference< xml::sax::XDocumentHandler > xHa
pNewAttrList->AddAttribute ( sIterationCountAttribute, sCdataAttribute, aBuffer.makeStringAndClear() ); pNewAttrList->AddAttribute ( sIterationCountAttribute, sCdataAttribute, aBuffer.makeStringAndClear() );
*pSalt >>= aSequence; *pSalt >>= aSequence;
Base64Codec::encodeBase64 ( aBuffer, aSequence ); ::sax::Converter::encodeBase64 ( aBuffer, aSequence );
pNewAttrList->AddAttribute ( sSaltAttribute, sCdataAttribute, aBuffer.makeStringAndClear() ); pNewAttrList->AddAttribute ( sSaltAttribute, sCdataAttribute, aBuffer.makeStringAndClear() );
xHandler->ignorableWhitespace ( sWhiteSpace ); xHandler->ignorableWhitespace ( sWhiteSpace );
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#include "precompiled_package.hxx" #include "precompiled_package.hxx"
#include <ManifestImport.hxx> #include <ManifestImport.hxx>
#include <ManifestDefines.hxx> #include <ManifestDefines.hxx>
#include <Base64Codec.hxx> #include <sax/tools/converter.hxx>
#include <com/sun/star/xml/sax/XAttributeList.hpp> #include <com/sun/star/xml/sax/XAttributeList.hpp>
#include <com/sun/star/xml/crypto/DigestID.hpp> #include <com/sun/star/xml/crypto/DigestID.hpp>
...@@ -152,7 +152,7 @@ void SAL_CALL ManifestImport::startElement( const OUString& aName, const uno::Re ...@@ -152,7 +152,7 @@ void SAL_CALL ManifestImport::startElement( const OUString& aName, const uno::Re
setProperty( PKG_MNFST_DIGESTALG, nDigestId ); setProperty( PKG_MNFST_DIGESTALG, nDigestId );
const OUString& sChecksumData = aConvertedAttribs[sChecksumAttribute]; const OUString& sChecksumData = aConvertedAttribs[sChecksumAttribute];
uno::Sequence < sal_Int8 > aDecodeBuffer; uno::Sequence < sal_Int8 > aDecodeBuffer;
Base64Codec::decodeBase64( aDecodeBuffer, sChecksumData ); ::sax::Converter::decodeBase64( aDecodeBuffer, sChecksumData );
setProperty( PKG_MNFST_DIGEST, aDecodeBuffer ); setProperty( PKG_MNFST_DIGEST, aDecodeBuffer );
} }
} }
...@@ -195,7 +195,7 @@ void SAL_CALL ManifestImport::startElement( const OUString& aName, const uno::Re ...@@ -195,7 +195,7 @@ void SAL_CALL ManifestImport::startElement( const OUString& aName, const uno::Re
setProperty( PKG_MNFST_ENCALG, nCypherId ); setProperty( PKG_MNFST_ENCALG, nCypherId );
const OUString& sInitVector = aConvertedAttribs[sInitialisationVectorAttribute]; const OUString& sInitVector = aConvertedAttribs[sInitialisationVectorAttribute];
uno::Sequence < sal_Int8 > aDecodeBuffer; uno::Sequence < sal_Int8 > aDecodeBuffer;
Base64Codec::decodeBase64 ( aDecodeBuffer, sInitVector ); ::sax::Converter::decodeBase64 ( aDecodeBuffer, sInitVector );
setProperty( PKG_MNFST_INIVECTOR, aDecodeBuffer ); setProperty( PKG_MNFST_INIVECTOR, aDecodeBuffer );
} }
} }
...@@ -209,7 +209,7 @@ void SAL_CALL ManifestImport::startElement( const OUString& aName, const uno::Re ...@@ -209,7 +209,7 @@ void SAL_CALL ManifestImport::startElement( const OUString& aName, const uno::Re
{ {
const OUString& rSaltString = aConvertedAttribs[sSaltAttribute]; const OUString& rSaltString = aConvertedAttribs[sSaltAttribute];
uno::Sequence < sal_Int8 > aDecodeBuffer; uno::Sequence < sal_Int8 > aDecodeBuffer;
Base64Codec::decodeBase64 ( aDecodeBuffer, rSaltString ); ::sax::Converter::decodeBase64 ( aDecodeBuffer, rSaltString );
setProperty( PKG_MNFST_SALT, aDecodeBuffer ); setProperty( PKG_MNFST_SALT, aDecodeBuffer );
const OUString& rIterationCount = aConvertedAttribs[sIterationCountAttribute]; const OUString& rIterationCount = aConvertedAttribs[sIterationCountAttribute];
......
...@@ -59,7 +59,8 @@ SHL1STDLIBS=\ ...@@ -59,7 +59,8 @@ SHL1STDLIBS=\
$(CPPUHELPERLIB) \ $(CPPUHELPERLIB) \
$(COMPHELPERLIB) \ $(COMPHELPERLIB) \
$(SALLIB) \ $(SALLIB) \
$(ZLIB3RDLIB) $(ZLIB3RDLIB) \
$(SAXLIB)
SHL1DEF=$(MISC)$/$(SHL1TARGET).def SHL1DEF=$(MISC)$/$(SHL1TARGET).def
SHL1LIBS=$(LIB1TARGET) SHL1LIBS=$(LIB1TARGET)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment