Home
last modified time | relevance | path

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

/aoo41x/main/filter/source/msfilter/
H A Dmscodec.cxx319 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()
/aoo41x/main/oox/source/core/
H A Dbinarycodec.cxx295 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()
/aoo41x/main/svl/source/passwordcontainer/
H A Dpasswordcontainer.cxx496 …OSL_ENSURE( aMasterPasswd.getLength() == RTL_DIGEST_LENGTH_MD5 * 2, "Wrong master password format!… in decodeMasterPassword()
498 for( int ind = 0; ind < RTL_DIGEST_LENGTH_MD5; ind++ ) { in decodeMasterPassword()
518 ivSource.assign(masterPasswordCode, masterPasswordCode + RTL_DIGEST_LENGTH_MD5); in prepareIV()
521 iv.resize(RTL_DIGEST_LENGTH_MD5); in prepareIV()
537 unsigned char code[RTL_DIGEST_LENGTH_MD5]; in DecodePasswords()
545 code, RTL_DIGEST_LENGTH_MD5, (iv.size()? &iv[0] : NULL), in DecodePasswords()
592 unsigned char code[RTL_DIGEST_LENGTH_MD5]; in EncodePasswords()
600 code, RTL_DIGEST_LENGTH_MD5, (iv.size()? &iv[0] : NULL), in EncodePasswords()
945 for ( sal_Int32 nInd = 0; nInd < RTL_DIGEST_LENGTH_MD5; nInd++ ) in GetDefaultMasterPassword()
/aoo41x/main/sal/workben/
H A Dt_digest.c202 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()
/aoo41x/main/sdext/source/pdfimport/
H A Dfilterdet.cxx559 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()
/aoo41x/main/sal/qa/rtl/digest/
H A Drtl_digest.cxx436 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()
/aoo41x/main/sal/inc/rtl/
H A Ddigest.h233 #define RTL_DIGEST_LENGTH_MD5 16 macro
435 #define RTL_DIGEST_LENGTH_HMAC_MD5 RTL_DIGEST_LENGTH_MD5
/aoo41x/main/uui/source/
H A Diahndl-authentication.cxx451 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()
/aoo41x/main/vcl/source/gdi/
H A Dpdfwriter_impl2.cxx1175 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 Dpdfwriter_impl.cxx6545 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()
/aoo41x/main/comphelper/source/misc/
H A Ddocpasswordhelper.cxx330 hDigest, pKeyData, RTL_DIGEST_LENGTH_MD5); in GenerateStd97Key()
348 aResultKey.realloc( RTL_DIGEST_LENGTH_MD5 ); in GenerateStd97Key()
/aoo41x/main/sdext/source/pdfimport/pdfparse/
H A Dpdfentries.cxx1153 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()
/aoo41x/main/oox/inc/oox/core/
H A Dbinarycodec.hxx308 sal_uInt8 mpnDigestValue[ RTL_DIGEST_LENGTH_MD5 ];
/aoo41x/main/tools/bootstrp/
H A Dmd5.cxx96 sal_uInt8 checksum[RTL_DIGEST_LENGTH_MD5]; in calc_md5_checksum()
/aoo41x/main/filter/inc/filter/msfilter/
H A Dmscodec.hxx364 sal_uInt8 m_pDigestValue[ RTL_DIGEST_LENGTH_MD5 ];
/aoo41x/main/sal/rtl/source/
H A Drandom.c70 #define RTL_RANDOM_SIZE_DIGEST RTL_DIGEST_LENGTH_MD5
H A Ddigest.c563 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()
/aoo41x/main/sal/osl/unx/
H A Dsignal.c646 sal_uInt8 checksum[RTL_DIGEST_LENGTH_MD5]; in ReportCrash()
/aoo41x/main/crashrep/source/win32/
H A Dsoreport.cpp1835 sal_uInt8 checksum[RTL_DIGEST_LENGTH_MD5]; in WriteChecksumFile()

Completed in 484 milliseconds