Home
last modified time | relevance | path

Searched refs:nSaltLength (Results 1 – 1 of 1) sorted by relevance

/aoo4110/main/package/source/zipapi/
H A DZipFile.cxx207 sal_Int16 nSaltLength = static_cast < sal_Int16 > ( rData->m_aSalt.getLength() ); in StaticFillHeader() local
263 *(pHeader++) = static_cast< sal_Int8 >(( nSaltLength >> 0 ) & 0xFF); in StaticFillHeader()
264 *(pHeader++) = static_cast< sal_Int8 >(( nSaltLength >> 8 ) & 0xFF); in StaticFillHeader()
279 rtl_copyMemory ( pHeader, rData->m_aSalt.getConstArray(), nSaltLength ); in StaticFillHeader()
280 pHeader += nSaltLength; in StaticFillHeader()
346 sal_Int16 nSaltLength = pBuffer[nPos++] & 0xFF; in StaticFillData() local
347 nSaltLength |= ( pBuffer[nPos++] & 0xFF ) << 8; in StaticFillData()
356 if ( nSaltLength == rStream->readBytes ( aBuffer, nSaltLength ) ) in StaticFillData()
358 rData->m_aSalt.realloc ( nSaltLength ); in StaticFillData()
359 rtl_copyMemory ( rData->m_aSalt.getArray(), aBuffer.getConstArray(), nSaltLength ); in StaticFillData()

Completed in 23 milliseconds