Kaydet (Commit) bdce89bc authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

INTEGRATION: CWS xmlsec08 (1.2.24); FILE MERGED

2005/02/22 07:44:42 mmi 1.2.24.2: can support negative serail number.
Issue number: 43020
Submitted by:
Reviewed by:
2005/01/27 04:46:17 mmi 1.2.24.1: chinese font displayed  as squares
Issue number:  41071
Submitted by:
Reviewed by:
üst d6f136b6
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: biginteger.cxx,v $ * $RCSfile: biginteger.cxx,v $
* *
* $Revision: 1.2 $ * $Revision: 1.3 $
* *
* last change: $Author: mt $ $Date: 2004-07-26 07:29:33 $ * last change: $Author: vg $ $Date: 2005-03-10 18:09:16 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -68,10 +68,10 @@ ...@@ -68,10 +68,10 @@
using namespace ::com::sun::star::uno ; using namespace ::com::sun::star::uno ;
using ::rtl::OUString ; using ::rtl::OUString ;
Sequence< sal_Int8 > numericStringToBigInteger ( Sequence< sal_Int8 > numericStringToBigInteger ( OUString numeral )
OUString numeral {
) { if( numeral.getStr() != NULL )
if( numeral.getStr() != NULL ) { {
xmlChar* chNumeral ; xmlChar* chNumeral ;
const xmlSecByte* bnInteger ; const xmlSecByte* bnInteger ;
xmlSecSize length ; xmlSecSize length ;
...@@ -108,8 +108,9 @@ Sequence< sal_Int8 > numericStringToBigInteger ( ...@@ -108,8 +108,9 @@ Sequence< sal_Int8 > numericStringToBigInteger (
Sequence< sal_Int8 > integer( length ) ; Sequence< sal_Int8 > integer( length ) ;
for( unsigned int i = 0 ; i < length ; i ++ ) for( unsigned int i = 0 ; i < length ; i ++ )
{
integer[i] = *( bnInteger + i ) ; integer[i] = *( bnInteger + i ) ;
// integer[i] = *( bb + sizeof( bb ) - len + i ) ; }
xmlSecBnFinalize( &bn ) ; xmlSecBnFinalize( &bn ) ;
return integer ; return integer ;
...@@ -118,9 +119,8 @@ Sequence< sal_Int8 > numericStringToBigInteger ( ...@@ -118,9 +119,8 @@ Sequence< sal_Int8 > numericStringToBigInteger (
return NULL ; return NULL ;
} }
OUString bigIntegerToNumericString ( OUString bigIntegerToNumericString ( Sequence< sal_Int8 > integer )
Sequence< sal_Int8 > integer {
) {
OUString aRet ; OUString aRet ;
if( integer.getLength() ) { if( integer.getLength() ) {
......
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