diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-12-09 21:30:30 +0000 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-12-10 11:57:35 +0100 |
commit | 15ff0c3828406aa00d8fa0d1e7de90916f9c13cc (patch) | |
tree | 466f2321a34d00c9392a4a73e7c7c284cd4e8805 /oox | |
parent | 9c2c815d853a626d4329a7e8a2e99671bdb38f44 (diff) |
cid#1545975 COPY_INSTEAD_OF_MOVE
and
cid#1545955 COPY_INSTEAD_OF_MOVE
cid#1545954 COPY_INSTEAD_OF_MOVE
cid#1545952 COPY_INSTEAD_OF_MOVE
cid#1545948 COPY_INSTEAD_OF_MOVE
cid#1545943 COPY_INSTEAD_OF_MOVE
cid#1545935 COPY_INSTEAD_OF_MOVE
cid#1545930 COPY_INSTEAD_OF_MOVE
cid#1545928 COPY_INSTEAD_OF_MOVE
cid#1545925 COPY_INSTEAD_OF_MOVE
cid#1545922 COPY_INSTEAD_OF_MOVE
Change-Id: I28d830504337f417829c675b1eb9c763b83b30c4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160522
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/crypto/AgileEngine.cxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/oox/source/crypto/AgileEngine.cxx b/oox/source/crypto/AgileEngine.cxx index 36fda7002b7d..857034777357 100644 --- a/oox/source/crypto/AgileEngine.cxx +++ b/oox/source/crypto/AgileEngine.cxx @@ -202,20 +202,17 @@ bool hashCalc(std::vector<sal_uInt8>& output, { if (sAlgorithm == u"SHA1") { - std::vector<unsigned char> out = comphelper::Hash::calculateHash(input.data(), input.size(), comphelper::HashType::SHA1); - output = out; + output = comphelper::Hash::calculateHash(input.data(), input.size(), comphelper::HashType::SHA1); return true; } else if (sAlgorithm == u"SHA384") { - std::vector<unsigned char> out = comphelper::Hash::calculateHash(input.data(), input.size(), comphelper::HashType::SHA384); - output = out; + output = comphelper::Hash::calculateHash(input.data(), input.size(), comphelper::HashType::SHA384); return true; } else if (sAlgorithm == u"SHA512") { - std::vector<unsigned char> out = comphelper::Hash::calculateHash(input.data(), input.size(), comphelper::HashType::SHA512); - output = out; + output = comphelper::Hash::calculateHash(input.data(), input.size(), comphelper::HashType::SHA512); return true; } return false; |