Simplify a bit
[LibreOffice.git] / comphelper / source / misc / docpasswordhelper.cxx
blob76008b508c689ff63dc74952acd24fa51f0d0c4a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <config_gpgme.h>
22 #include <algorithm>
23 #include <string_view>
25 #include <comphelper/docpasswordhelper.hxx>
26 #include <comphelper/propertyvalue.hxx>
27 #include <comphelper/storagehelper.hxx>
28 #include <comphelper/hash.hxx>
29 #include <comphelper/base64.hxx>
30 #include <comphelper/sequence.hxx>
31 #include <com/sun/star/beans/NamedValue.hpp>
32 #include <com/sun/star/beans/PropertyValue.hpp>
33 #include <com/sun/star/task/XInteractionHandler.hpp>
35 #include <osl/diagnose.h>
36 #include <sal/log.hxx>
37 #include <rtl/digest.h>
38 #include <rtl/random.h>
39 #include <string.h>
41 #if HAVE_FEATURE_GPGME
42 # include <context.h>
43 # include <data.h>
44 # include <decryptionresult.h>
45 #endif
47 using ::com::sun::star::uno::Sequence;
48 using ::com::sun::star::uno::Exception;
49 using ::com::sun::star::uno::Reference;
50 using ::com::sun::star::task::PasswordRequestMode;
51 using ::com::sun::star::task::PasswordRequestMode_PASSWORD_ENTER;
52 using ::com::sun::star::task::PasswordRequestMode_PASSWORD_REENTER;
53 using ::com::sun::star::task::XInteractionHandler;
55 using namespace ::com::sun::star;
57 namespace comphelper {
60 static uno::Sequence< sal_Int8 > GeneratePBKDF2Hash( std::u16string_view aPassword, const uno::Sequence< sal_Int8 >& aSalt, sal_Int32 nCount, sal_Int32 nHashLength )
62 uno::Sequence< sal_Int8 > aResult;
64 if ( !aPassword.empty() && aSalt.hasElements() && nCount && nHashLength )
66 OString aBytePass = OUStringToOString( aPassword, RTL_TEXTENCODING_UTF8 );
67 // FIXME this is subject to the SHA1-bug tdf#114939 - see also
68 // RequestPassword() in filedlghelper.cxx
69 aResult.realloc( 16 );
70 rtl_digest_PBKDF2( reinterpret_cast < sal_uInt8 * > ( aResult.getArray() ),
71 aResult.getLength(),
72 reinterpret_cast < const sal_uInt8 * > ( aBytePass.getStr() ),
73 aBytePass.getLength(),
74 reinterpret_cast < const sal_uInt8 * > ( aSalt.getConstArray() ),
75 aSalt.getLength(),
76 nCount );
79 return aResult;
83 IDocPasswordVerifier::~IDocPasswordVerifier()
88 uno::Sequence< beans::PropertyValue > DocPasswordHelper::GenerateNewModifyPasswordInfo( std::u16string_view aPassword )
90 uno::Sequence< beans::PropertyValue > aResult;
92 uno::Sequence< sal_Int8 > aSalt = GenerateRandomByteSequence( 16 );
93 sal_Int32 const nPBKDF2IterationCount = 100000;
95 uno::Sequence< sal_Int8 > aNewHash = GeneratePBKDF2Hash(aPassword, aSalt, nPBKDF2IterationCount, 16);
96 if ( aNewHash.hasElements() )
98 aResult = { comphelper::makePropertyValue("algorithm-name", OUString( "PBKDF2" )),
99 comphelper::makePropertyValue("salt", aSalt),
100 comphelper::makePropertyValue("iteration-count", nPBKDF2IterationCount),
101 comphelper::makePropertyValue("hash", aNewHash) };
104 return aResult;
108 uno::Sequence<beans::PropertyValue>
109 DocPasswordHelper::GenerateNewModifyPasswordInfoOOXML(std::u16string_view aPassword)
111 uno::Sequence<beans::PropertyValue> aResult;
113 if (!aPassword.empty())
115 uno::Sequence<sal_Int8> aSalt = GenerateRandomByteSequence(16);
116 OUStringBuffer aBuffer(22);
117 comphelper::Base64::encode(aBuffer, aSalt);
118 OUString sSalt = aBuffer.makeStringAndClear();
120 sal_Int32 const nIterationCount = 100000;
121 OUString sAlgorithm("SHA-512");
123 const OUString sHash(GetOoxHashAsBase64(OUString(aPassword), sSalt, nIterationCount,
124 comphelper::Hash::IterCount::APPEND, sAlgorithm));
126 if (!sHash.isEmpty())
128 aResult = { comphelper::makePropertyValue("algorithm-name", sAlgorithm),
129 comphelper::makePropertyValue("salt", sSalt),
130 comphelper::makePropertyValue("iteration-count", nIterationCount),
131 comphelper::makePropertyValue("hash", sHash) };
135 return aResult;
139 uno::Sequence< beans::PropertyValue > DocPasswordHelper::ConvertPasswordInfo( const uno::Sequence< beans::PropertyValue >& aInfo )
141 uno::Sequence< beans::PropertyValue > aResult;
142 OUString sAlgorithm, sHash, sSalt, sCount;
143 sal_Int32 nAlgorithm = 0;
145 for ( const auto & prop : aInfo )
147 if ( prop.Name == "cryptAlgorithmSid" )
149 prop.Value >>= sAlgorithm;
150 nAlgorithm = sAlgorithm.toInt32();
152 else if ( prop.Name == "salt" )
153 prop.Value >>= sSalt;
154 else if ( prop.Name == "cryptSpinCount" )
155 prop.Value >>= sCount;
156 else if ( prop.Name == "hash" )
157 prop.Value >>= sHash;
160 if (nAlgorithm == 1)
161 sAlgorithm = "MD2";
162 else if (nAlgorithm == 2)
163 sAlgorithm = "MD4";
164 else if (nAlgorithm == 3)
165 sAlgorithm = "MD5";
166 else if (nAlgorithm == 4)
167 sAlgorithm = "SHA-1";
168 else if (nAlgorithm == 5)
169 sAlgorithm = "MAC";
170 else if (nAlgorithm == 6)
171 sAlgorithm = "RIPEMD";
172 else if (nAlgorithm == 7)
173 sAlgorithm = "RIPEMD-160";
174 else if (nAlgorithm == 9)
175 sAlgorithm = "HMAC";
176 else if (nAlgorithm == 12)
177 sAlgorithm = "SHA-256";
178 else if (nAlgorithm == 13)
179 sAlgorithm = "SHA-384";
180 else if (nAlgorithm == 14)
181 sAlgorithm = "SHA-512";
183 if ( !sCount.isEmpty() )
185 sal_Int32 nCount = sCount.toInt32();
186 aResult = { comphelper::makePropertyValue("algorithm-name", sAlgorithm),
187 comphelper::makePropertyValue("salt", sSalt),
188 comphelper::makePropertyValue("iteration-count", nCount),
189 comphelper::makePropertyValue("hash", sHash) };
192 return aResult;
196 bool DocPasswordHelper::IsModifyPasswordCorrect( std::u16string_view aPassword, const uno::Sequence< beans::PropertyValue >& aInfo )
198 bool bResult = false;
199 if ( !aPassword.empty() && aInfo.hasElements() )
201 OUString sAlgorithm;
202 uno::Any aSalt, aHash;
203 sal_Int32 nCount = 0;
205 for ( const auto & prop : aInfo )
207 if ( prop.Name == "algorithm-name" )
208 prop.Value >>= sAlgorithm;
209 else if ( prop.Name == "salt" )
210 aSalt = prop.Value;
211 else if ( prop.Name == "iteration-count" )
212 prop.Value >>= nCount;
213 else if ( prop.Name == "hash" )
214 aHash = prop.Value;
217 if ( sAlgorithm == "PBKDF2" )
219 uno::Sequence<sal_Int8> aIntSalt, aIntHash;
220 aSalt >>= aIntSalt;
221 aHash >>= aIntHash;
222 if (aIntSalt.hasElements() && nCount > 0 && aIntHash.hasElements())
224 uno::Sequence<sal_Int8> aNewHash
225 = GeneratePBKDF2Hash(aPassword, aIntSalt, nCount, aIntHash.getLength());
226 for (sal_Int32 nInd = 0; nInd < aNewHash.getLength() && nInd < aIntHash.getLength()
227 && aNewHash[nInd] == aIntHash[nInd];
228 nInd++)
230 if (nInd == aNewHash.getLength() - 1 && nInd == aIntHash.getLength() - 1)
231 bResult = true;
235 else if (nCount > 0)
237 OUString sSalt, sHash;
238 aSalt >>= sSalt;
239 aHash >>= sHash;
240 if (!sSalt.isEmpty() && !sHash.isEmpty())
242 const OUString aNewHash(GetOoxHashAsBase64(OUString(aPassword), sSalt, nCount,
243 comphelper::Hash::IterCount::APPEND,
244 sAlgorithm));
245 if (!aNewHash.isEmpty())
246 bResult = aNewHash == sHash;
251 return bResult;
255 sal_uInt32 DocPasswordHelper::GetWordHashAsUINT32(
256 std::u16string_view aUString )
258 static const sal_uInt16 pInitialCode[] = {
259 0xE1F0, // 1
260 0x1D0F, // 2
261 0xCC9C, // 3
262 0x84C0, // 4
263 0x110C, // 5
264 0x0E10, // 6
265 0xF1CE, // 7
266 0x313E, // 8
267 0x1872, // 9
268 0xE139, // 10
269 0xD40F, // 11
270 0x84F9, // 12
271 0x280C, // 13
272 0xA96A, // 14
273 0x4EC3 // 15
276 static const sal_uInt16 pEncryptionMatrix[15][7] = {
277 { 0xAEFC, 0x4DD9, 0x9BB2, 0x2745, 0x4E8A, 0x9D14, 0x2A09}, // last-14
278 { 0x7B61, 0xF6C2, 0xFDA5, 0xEB6B, 0xC6F7, 0x9DCF, 0x2BBF}, // last-13
279 { 0x4563, 0x8AC6, 0x05AD, 0x0B5A, 0x16B4, 0x2D68, 0x5AD0}, // last-12
280 { 0x0375, 0x06EA, 0x0DD4, 0x1BA8, 0x3750, 0x6EA0, 0xDD40}, // last-11
281 { 0xD849, 0xA0B3, 0x5147, 0xA28E, 0x553D, 0xAA7A, 0x44D5}, // last-10
282 { 0x6F45, 0xDE8A, 0xAD35, 0x4A4B, 0x9496, 0x390D, 0x721A}, // last-9
283 { 0xEB23, 0xC667, 0x9CEF, 0x29FF, 0x53FE, 0xA7FC, 0x5FD9}, // last-8
284 { 0x47D3, 0x8FA6, 0x8FA6, 0x1EDA, 0x3DB4, 0x7B68, 0xF6D0}, // last-7
285 { 0xB861, 0x60E3, 0xC1C6, 0x93AD, 0x377B, 0x6EF6, 0xDDEC}, // last-6
286 { 0x45A0, 0x8B40, 0x06A1, 0x0D42, 0x1A84, 0x3508, 0x6A10}, // last-5
287 { 0xAA51, 0x4483, 0x8906, 0x022D, 0x045A, 0x08B4, 0x1168}, // last-4
288 { 0x76B4, 0xED68, 0xCAF1, 0x85C3, 0x1BA7, 0x374E, 0x6E9C}, // last-3
289 { 0x3730, 0x6E60, 0xDCC0, 0xA9A1, 0x4363, 0x86C6, 0x1DAD}, // last-2
290 { 0x3331, 0x6662, 0xCCC4, 0x89A9, 0x0373, 0x06E6, 0x0DCC}, // last-1
291 { 0x1021, 0x2042, 0x4084, 0x8108, 0x1231, 0x2462, 0x48C4} // last
294 sal_uInt32 nResult = 0;
295 size_t nLen = aUString.size();
297 if ( nLen )
299 if ( nLen > 15 )
300 nLen = 15;
302 sal_uInt16 nHighResult = pInitialCode[nLen - 1];
303 sal_uInt16 nLowResult = 0;
305 for ( size_t nInd = 0; nInd < nLen; nInd++ )
307 // NO Encoding during conversion!
308 // The specification says that the low byte should be used in case it is not NULL
309 char nHighChar = static_cast<char>( aUString[nInd] >> 8 );
310 char nLowChar = static_cast<char>( aUString[nInd] & 0xFF );
311 char nChar = nLowChar ? nLowChar : nHighChar;
313 for ( int nMatrixInd = 0; nMatrixInd < 7; ++nMatrixInd )
315 if ( ( nChar & ( 1 << nMatrixInd ) ) != 0 )
316 nHighResult = nHighResult ^ pEncryptionMatrix[15 - nLen + nInd][nMatrixInd];
319 nLowResult = ( ( ( nLowResult >> 14 ) & 0x0001 ) | ( ( nLowResult << 1 ) & 0x7FFF ) ) ^ nChar;
322 nLowResult = static_cast<sal_uInt16>( ( ( ( nLowResult >> 14 ) & 0x001 ) | ( ( nLowResult << 1 ) & 0x7FF ) ) ^ nLen ^ 0xCE4B );
324 nResult = ( nHighResult << 16 ) | nLowResult;
327 return nResult;
331 sal_uInt16 DocPasswordHelper::GetXLHashAsUINT16(
332 std::u16string_view aUString,
333 rtl_TextEncoding nEnc )
335 sal_uInt16 nResult = 0;
337 OString aString = OUStringToOString( aUString, nEnc );
339 if ( !aString.isEmpty() && aString.getLength() <= SAL_MAX_UINT16 )
341 for ( sal_Int32 nInd = aString.getLength() - 1; nInd >= 0; nInd-- )
343 nResult = ( ( nResult >> 14 ) & 0x01 ) | ( ( nResult << 1 ) & 0x7FFF );
344 nResult ^= aString[nInd];
347 nResult = ( ( nResult >> 14 ) & 0x01 ) | ( ( nResult << 1 ) & 0x7FFF );
348 nResult ^= ( 0x8000 | ( 'N' << 8 ) | 'K' );
349 nResult ^= aString.getLength();
352 return nResult;
356 Sequence< sal_Int8 > DocPasswordHelper::GetXLHashAsSequence(
357 std::u16string_view aUString )
359 sal_uInt16 nHash = GetXLHashAsUINT16( aUString );
360 return {sal_Int8(nHash >> 8), sal_Int8(nHash & 0xFF)};
364 std::vector<unsigned char> DocPasswordHelper::GetOoxHashAsVector(
365 const OUString& rPassword,
366 const std::vector<unsigned char>& rSaltValue,
367 sal_uInt32 nSpinCount,
368 comphelper::Hash::IterCount eIterCount,
369 std::u16string_view rAlgorithmName)
371 comphelper::HashType eType;
372 if (rAlgorithmName == u"SHA-512" || rAlgorithmName == u"SHA512")
373 eType = comphelper::HashType::SHA512;
374 else if (rAlgorithmName == u"SHA-256" || rAlgorithmName == u"SHA256")
375 eType = comphelper::HashType::SHA256;
376 else if (rAlgorithmName == u"SHA-384" || rAlgorithmName == u"SHA384")
377 eType = comphelper::HashType::SHA384;
378 else if (rAlgorithmName == u"SHA-1" || rAlgorithmName == u"SHA1") // "SHA1" might be in the wild
379 eType = comphelper::HashType::SHA1;
380 else if (rAlgorithmName == u"MD5")
381 eType = comphelper::HashType::MD5;
382 else
383 return std::vector<unsigned char>();
385 return comphelper::Hash::calculateHash( rPassword, rSaltValue, nSpinCount, eIterCount, eType);
389 css::uno::Sequence<sal_Int8> DocPasswordHelper::GetOoxHashAsSequence(
390 const OUString& rPassword,
391 std::u16string_view rSaltValue,
392 sal_uInt32 nSpinCount,
393 comphelper::Hash::IterCount eIterCount,
394 std::u16string_view rAlgorithmName)
396 std::vector<unsigned char> aSaltVec;
397 if (!rSaltValue.empty())
399 css::uno::Sequence<sal_Int8> aSaltSeq;
400 comphelper::Base64::decode( aSaltSeq, rSaltValue);
401 aSaltVec = comphelper::sequenceToContainer<std::vector<unsigned char>>( aSaltSeq);
404 std::vector<unsigned char> hash( GetOoxHashAsVector( rPassword, aSaltVec, nSpinCount, eIterCount, rAlgorithmName));
406 return comphelper::containerToSequence<sal_Int8>( hash);
409 OUString DocPasswordHelper::GetOoxHashAsBase64(
410 const OUString& rPassword,
411 std::u16string_view rSaltValue,
412 sal_uInt32 nSpinCount,
413 comphelper::Hash::IterCount eIterCount,
414 std::u16string_view rAlgorithmName)
416 css::uno::Sequence<sal_Int8> aSeq( GetOoxHashAsSequence( rPassword, rSaltValue, nSpinCount,
417 eIterCount, rAlgorithmName));
419 OUStringBuffer aBuf((aSeq.getLength()+2)/3*4);
420 comphelper::Base64::encode( aBuf, aSeq);
421 return aBuf.makeStringAndClear();
425 /*static*/ uno::Sequence< sal_Int8 > DocPasswordHelper::GenerateRandomByteSequence( sal_Int32 nLength )
427 uno::Sequence< sal_Int8 > aResult( nLength );
429 rtlRandomPool aRandomPool = rtl_random_createPool ();
430 if (rtl_random_getBytes(aRandomPool, aResult.getArray(), nLength) != rtl_Random_E_None)
432 throw uno::RuntimeException("rtl_random_getBytes failed");
434 rtl_random_destroyPool ( aRandomPool );
436 return aResult;
440 /*static*/ uno::Sequence< sal_Int8 > DocPasswordHelper::GenerateStd97Key( std::u16string_view aPassword, const uno::Sequence< sal_Int8 >& aDocId )
442 uno::Sequence< sal_Int8 > aResultKey;
443 if ( !aPassword.empty() && aDocId.getLength() == 16 )
445 sal_uInt16 pPassData[16] = {};
447 sal_Int32 nPassLen = std::min< sal_Int32 >( aPassword.size(), 15 );
448 memcpy( pPassData, aPassword.data(), nPassLen * sizeof(pPassData[0]) );
450 aResultKey = GenerateStd97Key( pPassData, aDocId );
453 return aResultKey;
457 /*static*/ uno::Sequence< sal_Int8 > DocPasswordHelper::GenerateStd97Key( const sal_uInt16 pPassData[16], const uno::Sequence< sal_Int8 >& aDocId )
459 uno::Sequence< sal_Int8 > aResultKey;
461 if ( aDocId.getLength() == 16 )
462 aResultKey = GenerateStd97Key(pPassData, reinterpret_cast<const sal_uInt8*>(aDocId.getConstArray()));
464 return aResultKey;
468 /*static*/ uno::Sequence< sal_Int8 > DocPasswordHelper::GenerateStd97Key( const sal_uInt16 pPassData[16], const sal_uInt8 pDocId[16] )
470 uno::Sequence< sal_Int8 > aResultKey;
471 if ( pPassData[0] )
473 sal_uInt8 pKeyData[64] = {};
475 sal_Int32 nInd = 0;
477 // Fill PassData into KeyData.
478 for ( nInd = 0; nInd < 16 && pPassData[nInd]; nInd++)
480 pKeyData[2*nInd] = sal::static_int_cast< sal_uInt8 >( (pPassData[nInd] >> 0) & 0xff );
481 pKeyData[2*nInd + 1] = sal::static_int_cast< sal_uInt8 >( (pPassData[nInd] >> 8) & 0xff );
484 pKeyData[2*nInd] = 0x80;
485 pKeyData[56] = sal::static_int_cast< sal_uInt8 >( nInd << 4 );
487 // Fill raw digest of KeyData into KeyData.
488 rtlDigest hDigest = rtl_digest_create ( rtl_Digest_AlgorithmMD5 );
489 (void)rtl_digest_updateMD5 (
490 hDigest, pKeyData, sizeof(pKeyData));
491 (void)rtl_digest_rawMD5 (
492 hDigest, pKeyData, RTL_DIGEST_LENGTH_MD5);
494 // Update digest with KeyData and Unique.
495 for ( nInd = 0; nInd < 16; nInd++ )
497 rtl_digest_updateMD5( hDigest, pKeyData, 5 );
498 rtl_digest_updateMD5( hDigest, pDocId, 16 );
501 // Update digest with padding.
502 pKeyData[16] = 0x80;
503 memset( pKeyData + 17, 0, sizeof(pKeyData) - 17 );
504 pKeyData[56] = 0x80;
505 pKeyData[57] = 0x0a;
507 rtl_digest_updateMD5( hDigest, &(pKeyData[16]), sizeof(pKeyData) - 16 );
509 // Fill raw digest of above updates
510 aResultKey.realloc( RTL_DIGEST_LENGTH_MD5 );
511 rtl_digest_rawMD5 ( hDigest, reinterpret_cast<sal_uInt8*>(aResultKey.getArray()), aResultKey.getLength() );
513 // Erase KeyData array and leave.
514 rtl_secureZeroMemory (pKeyData, sizeof(pKeyData));
516 rtl_digest_destroy(hDigest);
519 return aResultKey;
523 /*static*/ css::uno::Sequence< css::beans::NamedValue > DocPasswordHelper::requestAndVerifyDocPassword(
524 IDocPasswordVerifier& rVerifier,
525 const css::uno::Sequence< css::beans::NamedValue >& rMediaEncData,
526 const OUString& rMediaPassword,
527 const Reference< XInteractionHandler >& rxInteractHandler,
528 const OUString& rDocumentUrl,
529 DocPasswordRequestType eRequestType,
530 const std::vector< OUString >* pDefaultPasswords,
531 bool* pbIsDefaultPassword )
533 css::uno::Sequence< css::beans::NamedValue > aEncData;
534 OUString aPassword;
535 DocPasswordVerifierResult eResult = DocPasswordVerifierResult::WrongPassword;
537 sal_Int32 nMediaEncDataCount = rMediaEncData.getLength();
539 // tdf#93389: if the document is being restored from autorecovery, we need to add encryption
540 // data also for real document type.
541 // TODO: get real filter name here (from CheckPasswd_Impl), to only add necessary data
542 bool bForSalvage = false;
543 if (nMediaEncDataCount)
545 for (auto& val : rMediaEncData)
547 if (val.Name == "ForSalvage")
549 --nMediaEncDataCount; // don't consider this element below
550 val.Value >>= bForSalvage;
551 break;
556 // first, try provided default passwords
557 if( pbIsDefaultPassword )
558 *pbIsDefaultPassword = false;
559 if( pDefaultPasswords )
561 for( const auto& rPassword : *pDefaultPasswords )
563 OSL_ENSURE( !rPassword.isEmpty(), "DocPasswordHelper::requestAndVerifyDocPassword - unexpected empty default password" );
564 if( !rPassword.isEmpty() )
566 eResult = rVerifier.verifyPassword( rPassword, aEncData );
567 if (eResult == DocPasswordVerifierResult::OK)
569 aPassword = rPassword;
570 if (pbIsDefaultPassword)
571 *pbIsDefaultPassword = true;
573 if( eResult != DocPasswordVerifierResult::WrongPassword )
574 break;
579 // try media encryption data (skip, if result is OK or ABORT)
580 if( eResult == DocPasswordVerifierResult::WrongPassword )
582 if (nMediaEncDataCount)
584 eResult = rVerifier.verifyEncryptionData( rMediaEncData );
585 if( eResult == DocPasswordVerifierResult::OK )
586 aEncData = rMediaEncData;
590 // try media password (skip, if result is OK or ABORT)
591 if( eResult == DocPasswordVerifierResult::WrongPassword )
593 if( !rMediaPassword.isEmpty() )
595 eResult = rVerifier.verifyPassword( rMediaPassword, aEncData );
596 if (eResult == DocPasswordVerifierResult::OK)
597 aPassword = rMediaPassword;
601 // request a password (skip, if result is OK or ABORT)
602 if( (eResult == DocPasswordVerifierResult::WrongPassword) && rxInteractHandler.is() ) try
604 PasswordRequestMode eRequestMode = PasswordRequestMode_PASSWORD_ENTER;
605 while( eResult == DocPasswordVerifierResult::WrongPassword )
607 rtl::Reference<DocPasswordRequest> pRequest = new DocPasswordRequest( eRequestType, eRequestMode, rDocumentUrl );
608 rxInteractHandler->handle( pRequest );
609 if( pRequest->isPassword() )
611 if( !pRequest->getPassword().isEmpty() )
612 eResult = rVerifier.verifyPassword( pRequest->getPassword(), aEncData );
613 if (eResult == DocPasswordVerifierResult::OK)
614 aPassword = pRequest->getPassword();
616 else
618 eResult = DocPasswordVerifierResult::Abort;
620 eRequestMode = PasswordRequestMode_PASSWORD_REENTER;
623 catch( Exception& )
627 if (eResult == DocPasswordVerifierResult::OK && !aPassword.isEmpty())
629 if (std::none_of(std::cbegin(aEncData), std::cend(aEncData),
630 [](const css::beans::NamedValue& val) {
631 return val.Name == PACKAGE_ENCRYPTIONDATA_SHA256UTF8;
634 // tdf#118639: We need ODF encryption data for autorecovery, where password
635 // will already be unavailable, so generate and append it here
636 aEncData = comphelper::concatSequences(
637 aEncData, OStorageHelper::CreatePackageEncryptionData(aPassword));
640 if (bForSalvage)
642 // TODO: add individual methods for different target filter, and only call what's needed
644 // 1. Prepare binary MS formats encryption data
645 auto aUniqueID = GenerateRandomByteSequence(16);
646 auto aEnc97Key = GenerateStd97Key(aPassword, aUniqueID);
647 // 2. Add MS binary and OOXML encryption data to result
648 aEncData = comphelper::concatSequences(
649 aEncData, std::initializer_list<beans::NamedValue>{
650 { "STD97EncryptionKey", css::uno::Any(aEnc97Key) },
651 { "STD97UniqueID", css::uno::Any(aUniqueID) },
652 { "OOXPassword", css::uno::Any(aPassword) },
657 return (eResult == DocPasswordVerifierResult::OK) ? aEncData : uno::Sequence< beans::NamedValue >();
660 /*static*/ uno::Sequence< css::beans::NamedValue >
661 DocPasswordHelper::decryptGpgSession(
662 const uno::Sequence< uno::Sequence< beans::NamedValue > >& rGpgProperties )
664 #if HAVE_FEATURE_GPGME
665 if ( !rGpgProperties.hasElements() )
666 return uno::Sequence< beans::NamedValue >();
668 uno::Sequence< beans::NamedValue > aEncryptionData;
669 std::unique_ptr<GpgME::Context> ctx;
670 GpgME::initializeLibrary();
671 GpgME::Error err = GpgME::checkEngine(GpgME::OpenPGP);
672 if (err)
673 throw uno::RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
675 ctx.reset( GpgME::Context::createForProtocol(GpgME::OpenPGP) );
676 if (ctx == nullptr)
677 throw uno::RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
678 ctx->setArmor(false);
680 for (auto& rSequence : rGpgProperties)
682 if (rSequence.getLength() == 3)
684 // take CipherValue and try to decrypt that - stop after
685 // the first successful decryption
687 // ctx is setup now, let's decrypt the lot!
688 uno::Sequence < sal_Int8 > aVector;
689 rSequence[2].Value >>= aVector;
691 GpgME::Data cipher(
692 reinterpret_cast<const char*>(aVector.getConstArray()),
693 size_t(aVector.getLength()), false);
694 GpgME::Data plain;
696 GpgME::DecryptionResult crypt_res = ctx->decrypt(
697 cipher, plain);
699 // NO_SECKEY -> skip
700 // BAD_PASSPHRASE -> retry?
702 off_t result = plain.seek(0,SEEK_SET);
703 (void) result;
704 assert(result == 0);
705 int len=0, curr=0; char buf;
706 while( (curr=plain.read(&buf, 1)) )
707 len += curr;
709 if(crypt_res.error() || !len)
710 continue; // can't use this key, take next one
712 uno::Sequence < sal_Int8 > aKeyValue(len);
713 result = plain.seek(0,SEEK_SET);
714 assert(result == 0);
715 if( plain.read(aKeyValue.getArray(), len) != len )
716 throw uno::RuntimeException("The GpgME library failed to read the encrypted value.");
718 SAL_INFO("comphelper.crypto", "Extracted gpg session key of length: " << len);
720 aEncryptionData = { { PACKAGE_ENCRYPTIONDATA_SHA256UTF8, uno::Any(aKeyValue) } };
721 break;
725 if ( aEncryptionData.hasElements() )
727 uno::Sequence< beans::NamedValue > aContainer{
728 { "GpgInfos", uno::Any(rGpgProperties) }, { "EncryptionKey", uno::Any(aEncryptionData) }
731 return aContainer;
733 #else
734 (void)rGpgProperties;
735 #endif
736 return uno::Sequence< beans::NamedValue >();
739 } // namespace comphelper
741 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */