diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-06-15 15:10:47 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-06-15 15:10:47 -0500 |
| commit | 94dbf179d5dcf7501d1e27f673dabb6f5cce61cb (patch) | |
| tree | d85a385478ce00e693fcef75bec7837387e000ff /src/qt/updater.cpp | |
| parent | 7deecbfdf698bd62512e391bf9870abe745400d3 (diff) | |
| parent | ff4de8e8f74a641d3cc31303f3b172ea7b1be17f (diff) | |
| download | monzero-gui-94dbf179d5dcf7501d1e27f673dabb6f5cce61cb.tar.gz monzero-gui-94dbf179d5dcf7501d1e27f673dabb6f5cce61cb.tar.xz monzero-gui-94dbf179d5dcf7501d1e27f673dabb6f5cce61cb.zip | |
Merge pull request #2942
ff4de8e updater: use monero tools::sha256sum (xiphon)
Diffstat (limited to 'src/qt/updater.cpp')
| -rw-r--r-- | src/qt/updater.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/qt/updater.cpp b/src/qt/updater.cpp index 17d6eddb..b8afc761 100644 --- a/src/qt/updater.cpp +++ b/src/qt/updater.cpp @@ -28,6 +28,8 @@ #include "updater.h" +#include <common/util.h> + #include <openpgp/hash.h> #include "network.h" @@ -111,10 +113,9 @@ QPair<QString, QString> Updater::verifySignaturesAndHashSum( QByteArray Updater::getHash(const void *data, size_t size) const { - openpgp::hash hasher(openpgp::hash::algorithm::sha256); - hasher << epee::span<const uint8_t>(reinterpret_cast<const uint8_t *>(data), size); - const std::vector<uint8_t> hash = hasher.finish(); - return QByteArray(reinterpret_cast<const char *>(&hash[0]), hash.size()); + QByteArray hash(sizeof(crypto::hash), 0); + tools::sha256sum(static_cast<const uint8_t *>(data), size, *reinterpret_cast<crypto::hash *>(hash.data())); + return hash; } QByteArray Updater::parseShasumOutput(const QString &message, const QString &filename) const |
