Searched refs:aHash (Results 1 – 10 of 10) sorted by relevance
/aoo4110/main/framework/test/typecfg/ |
H A D | xml2xcd.cxx | 1673 void XCDGenerator::impl_initFilterHashNew2Old( StringHash& aHash ) in impl_initFilterHashNew2Old() argument 1676 …aHash[DECLARE_ASCII("writer_StarOffice_XML_Writer" )] = DECLARE_ASCII("swri… in impl_initFilterHashNew2Old() 1677 …aHash[DECLARE_ASCII("writer_StarWriter_50" )] = DECLARE_ASCII("swri… in impl_initFilterHashNew2Old() 1678 …aHash[DECLARE_ASCII("writer_StarWriter_50_VorlageTemplate" )] = DECLARE_ASCII("swri… in impl_initFilterHashNew2Old() 1679 …aHash[DECLARE_ASCII("writer_StarWriter_40" )] = DECLARE_ASCII("swri… in impl_initFilterHashNew2Old() 1680 …aHash[DECLARE_ASCII("writer_StarWriter_40_VorlageTemplate" )] = DECLARE_ASCII("swri… in impl_initFilterHashNew2Old() 1681 …aHash[DECLARE_ASCII("writer_StarWriter_30" )] = DECLARE_ASCII("swri… in impl_initFilterHashNew2Old() 1682 …aHash[DECLARE_ASCII("writer_StarWriter_30_VorlageTemplate" )] = DECLARE_ASCII("swri… in impl_initFilterHashNew2Old() 1683 …aHash[DECLARE_ASCII("writer_StarWriter_20" )] = DECLARE_ASCII("swri… in impl_initFilterHashNew2Old() 1684 …aHash[DECLARE_ASCII("writer_StarWriter_10" )] = DECLARE_ASCII("swri… in impl_initFilterHashNew2Old() [all …]
|
/aoo4110/main/bridges/source/cpp_uno/cc50_solaris_intel/ |
H A D | except.cxx | 202 NIST_Hash aHash( aMangledName.getStr(), aMangledName.getLength() ); in insertRTTI() local 212 pRTTI[ 3 ] = (void*)aHash.getHash()[0]; in insertRTTI() 213 pRTTI[ 4 ] = (void*)aHash.getHash()[1]; in insertRTTI() 214 pRTTI[ 5 ] = (void*)aHash.getHash()[2]; in insertRTTI() 215 pRTTI[ 6 ] = (void*)aHash.getHash()[3]; in insertRTTI() 264 NIST_Hash aHash( aMangledName.getStr(), aMangledName.getLength() ); in generateRTTI() local 274 pRTTI[ 3 ] = (void*)aHash.getHash()[0]; in generateRTTI() 275 pRTTI[ 4 ] = (void*)aHash.getHash()[1]; in generateRTTI() 276 pRTTI[ 5 ] = (void*)aHash.getHash()[2]; in generateRTTI() 277 pRTTI[ 6 ] = (void*)aHash.getHash()[3]; in generateRTTI()
|
H A D | hash.cxx | 248 NIST_Hash aHash( pHash, strlen( pHash ) ); in main() local 249 sal_uInt32* pBits = aHash.getHash(); in main()
|
/aoo4110/main/bridges/source/cpp_uno/cc50_solaris_sparc/ |
H A D | except.cxx | 203 NIST_Hash aHash( aMangledName.getStr(), aMangledName.getLength() ); in insertRTTI() local 211 pRTTI[ 3 ] = (void*)aHash.getHash()[0]; in insertRTTI() 212 pRTTI[ 4 ] = (void*)aHash.getHash()[1]; in insertRTTI() 213 pRTTI[ 5 ] = (void*)aHash.getHash()[2]; in insertRTTI() 214 pRTTI[ 6 ] = (void*)aHash.getHash()[3]; in insertRTTI() 265 NIST_Hash aHash( aMangledName.getStr(), aMangledName.getLength() ); in generateRTTI() local 275 pRTTI[ 3 ] = (void*)aHash.getHash()[0]; in generateRTTI() 276 pRTTI[ 4 ] = (void*)aHash.getHash()[1]; in generateRTTI() 277 pRTTI[ 5 ] = (void*)aHash.getHash()[2]; in generateRTTI() 278 pRTTI[ 6 ] = (void*)aHash.getHash()[3]; in generateRTTI()
|
H A D | hash.cxx | 249 NIST_Hash aHash( pHash, strlen( pHash ) ); in main() local 250 sal_uInt32* pBits = aHash.getHash(); in main()
|
/aoo4110/main/sc/source/core/data/ |
H A D | tabprotection.cxx | 108 Sequence<sal_Int8> aHash; in hashPassword() local 112 … aHash = ::comphelper::DocPasswordHelper::GetXLHashAsSequence( aPassText, RTL_TEXTENCODING_UTF8 ); in hashPassword() 116 SvPasswordHelper::GetHashPassword(aHash, aPassText); in hashPassword() 119 return aHash; in hashPassword() 240 Sequence<sal_Int8> aHash = hashPassword(aPassText, meHash); in verifyPassword() local 244 for (sal_Int32 i = 0; i < aHash.getLength(); ++i) in verifyPassword() 245 printf("%2.2X ", static_cast<sal_uInt8>(aHash[i])); in verifyPassword() 249 return aHash == maPassHash; in verifyPassword()
|
/aoo4110/main/comphelper/source/misc/ |
H A D | docpasswordhelper.cxx | 111 uno::Sequence< sal_Int8 > aHash; in IsModifyPasswordCorrect() local 123 aInfo[nInd].Value >>= aHash; in IsModifyPasswordCorrect() 127 && aSalt.getLength() && nCount > 0 && aHash.getLength() ) in IsModifyPasswordCorrect() 129 …:Sequence< sal_Int8 > aNewHash = GeneratePBKDF2Hash( aPassword, aSalt, nCount, aHash.getLength() ); in IsModifyPasswordCorrect() 130 …Int32 nInd = 0; nInd < aNewHash.getLength() && nInd < aHash.getLength() && aNewHash[nInd] == aHash… in IsModifyPasswordCorrect() 132 if ( nInd == aNewHash.getLength() - 1 && nInd == aHash.getLength() - 1 ) in IsModifyPasswordCorrect()
|
/aoo4110/main/sc/source/filter/excel/ |
H A D | excrecds.cxx | 516 XclExpPassHash::XclExpPassHash(const Sequence<sal_Int8>& aHash) : in XclExpPassHash() argument 520 if (aHash.getLength() >= 2) in XclExpPassHash() 522 mnHash = ((aHash[0] << 8) & 0xFFFF); in XclExpPassHash() 523 mnHash |= (aHash[1] & 0xFF); in XclExpPassHash()
|
/aoo4110/main/writerfilter/source/doctok/ |
H A D | WW8CpAndFc.hxx | 345 CpHash aHash; in operator ()() local 347 return aHash(rCpAndFc.getCp()); in operator ()()
|
/aoo4110/main/sc/source/filter/inc/ |
H A D | excrecds.hxx | 238 XclExpPassHash(const ::com::sun::star::uno::Sequence<sal_Int8>& aHash);
|
Completed in 113 milliseconds