2013-05-09 04:32:12 +02:00
|
|
|
/*
|
|
|
|
|
2018-04-09 09:04:33 +02:00
|
|
|
Copyright (c) 2003-2018, Arvid Norberg
|
2013-05-09 04:32:12 +02:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libtorrent/hasher.hpp"
|
2016-07-05 14:40:09 +02:00
|
|
|
#include "libtorrent/error_code.hpp"
|
2016-08-26 01:07:16 +02:00
|
|
|
#include "libtorrent/assert.hpp"
|
2016-09-07 23:51:18 +02:00
|
|
|
#include "libtorrent/aux_/openssl.hpp"
|
2016-07-05 14:40:09 +02:00
|
|
|
|
2017-04-12 19:00:57 +02:00
|
|
|
namespace libtorrent {
|
|
|
|
|
2016-09-07 23:51:18 +02:00
|
|
|
#ifdef TORRENT_MACOS_DEPRECATED_LIBCRYPTO
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#endif
|
|
|
|
|
2013-05-09 04:32:12 +02:00
|
|
|
hasher::hasher()
|
|
|
|
{
|
2016-06-23 19:20:35 +02:00
|
|
|
#ifdef TORRENT_USE_LIBGCRYPT
|
2013-05-09 04:32:12 +02:00
|
|
|
gcry_md_open(&m_context, GCRY_MD_SHA1, 0);
|
|
|
|
#elif TORRENT_USE_COMMONCRYPTO
|
|
|
|
CC_SHA1_Init(&m_context);
|
2016-07-05 14:40:09 +02:00
|
|
|
#elif TORRENT_USE_CRYPTOAPI
|
2016-06-23 19:20:35 +02:00
|
|
|
#elif defined TORRENT_USE_LIBCRYPTO
|
2013-05-09 04:32:12 +02:00
|
|
|
SHA1_Init(&m_context);
|
|
|
|
#else
|
|
|
|
SHA1_init(&m_context);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-07-22 18:31:42 +02:00
|
|
|
hasher::hasher(span<char const> data)
|
2016-07-22 16:29:39 +02:00
|
|
|
: hasher()
|
|
|
|
{
|
|
|
|
update(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
hasher::hasher(char const* data, int len)
|
2016-07-05 14:40:09 +02:00
|
|
|
: hasher()
|
2013-05-09 04:32:12 +02:00
|
|
|
{
|
|
|
|
TORRENT_ASSERT(len > 0);
|
2018-11-01 23:05:30 +01:00
|
|
|
update({data, len});
|
2013-05-09 04:32:12 +02:00
|
|
|
}
|
|
|
|
|
2016-06-23 19:20:35 +02:00
|
|
|
#ifdef TORRENT_USE_LIBGCRYPT
|
2013-05-09 04:32:12 +02:00
|
|
|
hasher::hasher(hasher const& h)
|
|
|
|
{
|
|
|
|
gcry_md_copy(&m_context, h.m_context);
|
|
|
|
}
|
|
|
|
|
2018-06-30 18:31:45 +02:00
|
|
|
hasher& hasher::operator=(hasher const& h) &
|
2013-05-09 04:32:12 +02:00
|
|
|
{
|
2018-10-17 00:40:31 +02:00
|
|
|
if (this == &h) return *this;
|
2013-05-09 04:32:12 +02:00
|
|
|
gcry_md_close(m_context);
|
|
|
|
gcry_md_copy(&m_context, h.m_context);
|
|
|
|
return *this;
|
|
|
|
}
|
2016-07-05 14:40:09 +02:00
|
|
|
#else
|
|
|
|
hasher::hasher(hasher const&) = default;
|
2018-06-30 18:31:45 +02:00
|
|
|
hasher& hasher::operator=(hasher const&) & = default;
|
2013-05-09 04:32:12 +02:00
|
|
|
#endif
|
|
|
|
|
2016-07-22 16:29:39 +02:00
|
|
|
hasher& hasher::update(char const* data, int len)
|
2013-05-09 04:32:12 +02:00
|
|
|
{
|
2018-11-01 23:05:30 +01:00
|
|
|
return update({data, len});
|
2016-07-22 16:29:39 +02:00
|
|
|
}
|
|
|
|
|
2016-07-22 18:31:42 +02:00
|
|
|
hasher& hasher::update(span<char const> data)
|
2016-07-22 16:29:39 +02:00
|
|
|
{
|
|
|
|
TORRENT_ASSERT(!data.empty());
|
2016-06-23 19:20:35 +02:00
|
|
|
#ifdef TORRENT_USE_LIBGCRYPT
|
2016-07-22 16:29:39 +02:00
|
|
|
gcry_md_write(m_context, data.data(), data.size());
|
2013-05-09 04:32:12 +02:00
|
|
|
#elif TORRENT_USE_COMMONCRYPTO
|
2016-12-07 14:51:11 +01:00
|
|
|
CC_SHA1_Update(&m_context, reinterpret_cast<unsigned char const*>(data.data()), CC_LONG(data.size()));
|
2016-07-05 14:40:09 +02:00
|
|
|
#elif TORRENT_USE_CRYPTOAPI
|
2017-01-07 07:53:39 +01:00
|
|
|
m_context.update(data);
|
2016-06-23 19:20:35 +02:00
|
|
|
#elif defined TORRENT_USE_LIBCRYPTO
|
2018-11-01 23:05:30 +01:00
|
|
|
SHA1_Update(&m_context, reinterpret_cast<unsigned char const*>(data.data())
|
|
|
|
, static_cast<std::size_t>(data.size()));
|
2013-05-09 04:32:12 +02:00
|
|
|
#else
|
2018-11-01 23:05:30 +01:00
|
|
|
SHA1_update(&m_context, reinterpret_cast<unsigned char const*>(data.data())
|
|
|
|
, static_cast<std::size_t>(data.size()));
|
2013-05-09 04:32:12 +02:00
|
|
|
#endif
|
2013-08-31 23:06:43 +02:00
|
|
|
return *this;
|
2013-05-09 04:32:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sha1_hash hasher::final()
|
|
|
|
{
|
|
|
|
sha1_hash digest;
|
2016-06-23 19:20:35 +02:00
|
|
|
#ifdef TORRENT_USE_LIBGCRYPT
|
2013-05-09 04:32:12 +02:00
|
|
|
gcry_md_final(m_context);
|
2018-08-28 14:52:48 +02:00
|
|
|
digest.assign(reinterpret_cast<char const*>(gcry_md_read(m_context, 0)));
|
2013-05-09 04:32:12 +02:00
|
|
|
#elif TORRENT_USE_COMMONCRYPTO
|
2016-08-26 01:07:16 +02:00
|
|
|
CC_SHA1_Final(reinterpret_cast<unsigned char*>(digest.data()), &m_context);
|
2016-07-05 14:40:09 +02:00
|
|
|
#elif TORRENT_USE_CRYPTOAPI
|
2017-01-07 07:53:39 +01:00
|
|
|
m_context.get_hash(digest.data(), digest.size());
|
2016-06-23 19:20:35 +02:00
|
|
|
#elif defined TORRENT_USE_LIBCRYPTO
|
2016-08-26 01:07:16 +02:00
|
|
|
SHA1_Final(reinterpret_cast<unsigned char*>(digest.data()), &m_context);
|
2013-05-09 04:32:12 +02:00
|
|
|
#else
|
2016-08-26 01:07:16 +02:00
|
|
|
SHA1_final(reinterpret_cast<unsigned char*>(digest.data()), &m_context);
|
2013-05-09 04:32:12 +02:00
|
|
|
#endif
|
|
|
|
return digest;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hasher::reset()
|
|
|
|
{
|
2016-06-23 19:20:35 +02:00
|
|
|
#ifdef TORRENT_USE_LIBGCRYPT
|
2013-05-09 04:32:12 +02:00
|
|
|
gcry_md_reset(m_context);
|
|
|
|
#elif TORRENT_USE_COMMONCRYPTO
|
|
|
|
CC_SHA1_Init(&m_context);
|
2016-07-05 14:40:09 +02:00
|
|
|
#elif TORRENT_USE_CRYPTOAPI
|
2017-01-07 07:53:39 +01:00
|
|
|
m_context.reset();
|
2016-06-23 19:20:35 +02:00
|
|
|
#elif defined TORRENT_USE_LIBCRYPTO
|
2013-05-09 04:32:12 +02:00
|
|
|
SHA1_Init(&m_context);
|
|
|
|
#else
|
|
|
|
SHA1_init(&m_context);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
hasher::~hasher()
|
|
|
|
{
|
2017-01-07 07:53:39 +01:00
|
|
|
#if defined TORRENT_USE_LIBGCRYPT
|
2013-05-09 04:32:12 +02:00
|
|
|
gcry_md_close(m_context);
|
|
|
|
#endif
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
2016-09-07 23:51:18 +02:00
|
|
|
|
|
|
|
#ifdef TORRENT_MACOS_DEPRECATED_LIBCRYPTO
|
|
|
|
#pragma clang diagnostic pop
|
|
|
|
#endif
|
2013-05-09 04:32:12 +02:00
|
|
|
}
|