/aoo4110/main/filter/source/msfilter/ |
H A D | mscodec.cxx | 319 if ( aKey.getLength() == RTL_DIGEST_LENGTH_MD5 ) in InitCodec() 321 (void)memcpy( m_pDigestValue, aKey.getConstArray(), RTL_DIGEST_LENGTH_MD5 ); in InitCodec() 342 …yptionKey" ) ) ] <<= uno::Sequence< sal_Int8 >( (sal_Int8*)m_pDigestValue, RTL_DIGEST_LENGTH_MD5 ); in GetEncryptionData() 385 sal_uInt8 pDigest[RTL_DIGEST_LENGTH_MD5]; in VerifyKey() 428 m_hDigest, pKeyData, RTL_DIGEST_LENGTH_MD5); in InitCipher() 433 pKeyData, RTL_DIGEST_LENGTH_MD5, 0, 0); in InitCipher() 450 sal_uInt8 pDigest[RTL_DIGEST_LENGTH_MD5]; in CreateSaltDigest() 536 sal_uInt8 pDigest[RTL_DIGEST_LENGTH_MD5]; in GetEncryptKey()
|
/aoo4110/main/oox/source/core/ |
H A D | binarycodec.cxx | 295 if ( aKey.getLength() == RTL_DIGEST_LENGTH_MD5 ) in initCodec() 297 (void)memcpy( mpnDigestValue, aKey.getConstArray(), RTL_DIGEST_LENGTH_MD5 ); in initCodec() 316 …yptionKey" ) ) ] <<= uno::Sequence< sal_Int8 >( (sal_Int8*)mpnDigestValue, RTL_DIGEST_LENGTH_MD5 ); in getEncryptionData() 340 sal_uInt8 pnDigest[ RTL_DIGEST_LENGTH_MD5 ]; in verifyKey() 386 (void)rtl_digest_rawMD5( mhDigest, pnKeyData, RTL_DIGEST_LENGTH_MD5 ); in startBlock() 390 … rtl_cipher_init( mhCipher, rtl_Cipher_DirectionDecode, pnKeyData, RTL_DIGEST_LENGTH_MD5, 0, 0 ); in startBlock()
|
/aoo4110/main/svl/source/passwordcontainer/ |
H A D | passwordcontainer.cxx | 493 …OSL_ENSURE( aMasterPasswd.getLength() == RTL_DIGEST_LENGTH_MD5 * 2, "Wrong master password format!… in DecodePasswords() 495 unsigned char code[RTL_DIGEST_LENGTH_MD5]; in DecodePasswords() 496 for( int ind = 0; ind < RTL_DIGEST_LENGTH_MD5; ind++ ) in DecodePasswords() 501 code, RTL_DIGEST_LENGTH_MD5, NULL, 0 ); in DecodePasswords() 547 …OSL_ENSURE( aMasterPasswd.getLength() == RTL_DIGEST_LENGTH_MD5 * 2, "Wrong master password format!… in EncodePasswords() 549 unsigned char code[RTL_DIGEST_LENGTH_MD5]; in EncodePasswords() 550 for( int ind = 0; ind < RTL_DIGEST_LENGTH_MD5; ind++ ) in EncodePasswords() 555 code, RTL_DIGEST_LENGTH_MD5, NULL, 0 ); in EncodePasswords() 862 for ( sal_Int32 nInd = 0; nInd < RTL_DIGEST_LENGTH_MD5; nInd++ ) in GetDefaultMasterPassword()
|
/aoo4110/main/sal/workben/ |
H A D | t_digest.c | 202 p=pt (md, RTL_DIGEST_LENGTH_MD5); in main() 358 md, RTL_DIGEST_LENGTH_MD5, /* [out] derived key */ in main() 363 p=pt (md, RTL_DIGEST_LENGTH_MD5); in main()
|
/aoo4110/main/sdext/source/pdfimport/ |
H A D | filterdet.cxx | 559 if( rChkSum.getLength() != 2* RTL_DIGEST_LENGTH_MD5 ) in checkDocChecksum() 562 rChkSum.getLength(), 2*RTL_DIGEST_LENGTH_MD5 ); in checkDocChecksum() 567 sal_uInt8 nTestChecksum[ RTL_DIGEST_LENGTH_MD5 ]; in checkDocChecksum() 569 for( unsigned int i = 0; i < RTL_DIGEST_LENGTH_MD5; i++ ) in checkDocChecksum() 586 sal_uInt8 nActualChecksum[ RTL_DIGEST_LENGTH_MD5 ]; in checkDocChecksum()
|
/aoo4110/main/sal/qa/rtl/digest/ |
H A D | rtl_digest.cxx | 436 CPPUNIT_ASSERT_MESSAGE("query Length", RTL_DIGEST_LENGTH_MD5 == nAlgoLength); in queryLength_MD5() 895 sal_uInt8 *pBuffer = new sal_uInt8[ RTL_DIGEST_LENGTH_MD5 ]; in MD5_001() 897 memset(pBuffer, 0, RTL_DIGEST_LENGTH_MD5 ); in MD5_001() 902 rtlDigestError aError = rtl_digest_MD5(pMsg1, nLen, pBuffer, RTL_DIGEST_LENGTH_MD5); in MD5_001() 906 rtl::OString aStr = createHex(pBuffer, RTL_DIGEST_LENGTH_MD5); in MD5_001()
|
/aoo4110/main/sal/inc/rtl/ |
H A D | digest.h | 233 #define RTL_DIGEST_LENGTH_MD5 16 macro 435 #define RTL_DIGEST_LENGTH_HMAC_MD5 RTL_DIGEST_LENGTH_MD5
|
/aoo4110/main/uui/source/ |
H A D | iahndl-authentication.cxx | 451 sal_uInt8 aKey[RTL_DIGEST_LENGTH_MD5]; in executeMasterPasswordDialog() 453 RTL_DIGEST_LENGTH_MD5, in executeMasterPasswordDialog() 462 for (int i = 0; i < RTL_DIGEST_LENGTH_MD5; ++i) in executeMasterPasswordDialog()
|
/aoo4110/main/vcl/source/gdi/ |
H A D | pdfwriter_impl2.cxx | 1175 sal_uInt8 nMD5Sum[ RTL_DIGEST_LENGTH_MD5 ]; in checkAndEnableStreamEncryption() 1194 sal_uInt8 nMD5Sum[ RTL_DIGEST_LENGTH_MD5 ]; in enableStringEncryption() 1335 sal_uInt8 nMD5Sum[ RTL_DIGEST_LENGTH_MD5 ]; in computeEncryptionKey() 1424 sal_uInt8 nMD5Sum[ RTL_DIGEST_LENGTH_MD5 ]; in computeODictionaryValue() 1534 sal_uInt8 nMD5Sum[ RTL_DIGEST_LENGTH_MD5 ]; in computeUDictionaryValue()
|
H A D | pdfwriter_impl.cxx | 6545 OStringBuffer aDocChecksum( 2*RTL_DIGEST_LENGTH_MD5+1 ); in emitTrailer() 6548 sal_uInt8 nMD5Sum[ RTL_DIGEST_LENGTH_MD5 ]; in emitTrailer() 6550 for( unsigned int i = 0; i < RTL_DIGEST_LENGTH_MD5; i++ ) in emitTrailer()
|
/aoo4110/main/comphelper/source/misc/ |
H A D | docpasswordhelper.cxx | 330 hDigest, pKeyData, RTL_DIGEST_LENGTH_MD5); in GenerateStd97Key() 348 aResultKey.realloc( RTL_DIGEST_LENGTH_MD5 ); in GenerateStd97Key()
|
/aoo4110/main/sdext/source/pdfimport/pdfparse/ |
H A D | pdfentries.cxx | 1153 sal_uInt8 nSum[RTL_DIGEST_LENGTH_MD5]; in password_to_key() 1164 if( nLen > RTL_DIGEST_LENGTH_MD5 ) in password_to_key() 1165 nLen = RTL_DIGEST_LENGTH_MD5; in password_to_key()
|
/aoo4110/main/oox/inc/oox/core/ |
H A D | binarycodec.hxx | 308 sal_uInt8 mpnDigestValue[ RTL_DIGEST_LENGTH_MD5 ];
|
/aoo4110/main/tools/bootstrp/ |
H A D | md5.cxx | 96 sal_uInt8 checksum[RTL_DIGEST_LENGTH_MD5]; in calc_md5_checksum()
|
/aoo4110/main/filter/inc/filter/msfilter/ |
H A D | mscodec.hxx | 364 sal_uInt8 m_pDigestValue[ RTL_DIGEST_LENGTH_MD5 ];
|
/aoo4110/main/sal/rtl/source/ |
H A D | random.c | 70 #define RTL_RANDOM_SIZE_DIGEST RTL_DIGEST_LENGTH_MD5
|
H A D | digest.c | 563 RTL_DIGEST_LENGTH_MD5, 1582 RTL_DIGEST_LENGTH_MD5, 1698 &(ctx->m_hash), ctx->m_opad, RTL_DIGEST_LENGTH_MD5); in rtl_digest_initHMAC_MD5()
|
/aoo4110/main/sal/osl/unx/ |
H A D | signal.c | 646 sal_uInt8 checksum[RTL_DIGEST_LENGTH_MD5]; in ReportCrash()
|
/aoo4110/main/crashrep/source/win32/ |
H A D | soreport.cpp | 1835 sal_uInt8 checksum[RTL_DIGEST_LENGTH_MD5]; in WriteChecksumFile()
|