2003-10-23 01:00:57 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2003, Arvid Norberg
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TORRENT_HASHER_HPP_INCLUDED
|
|
|
|
#define TORRENT_HASHER_HPP_INCLUDED
|
|
|
|
|
2004-08-02 00:15:44 +02:00
|
|
|
#include <boost/cstdint.hpp>
|
|
|
|
|
2004-09-10 02:47:30 +02:00
|
|
|
#include "libtorrent/peer_id.hpp"
|
2005-11-01 19:30:39 +01:00
|
|
|
#include "libtorrent/config.hpp"
|
2007-09-01 06:08:39 +02:00
|
|
|
#include "libtorrent/assert.hpp"
|
2007-03-17 18:15:16 +01:00
|
|
|
#include "zlib.h"
|
2004-09-10 02:47:30 +02:00
|
|
|
|
2009-11-08 04:09:19 +01:00
|
|
|
#ifdef TORRENT_USE_GCRYPT
|
|
|
|
#include <gcrypt.h>
|
|
|
|
#elif defined TORRENT_USE_OPENSSL
|
2007-04-15 06:30:52 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#include <openssl/sha.h>
|
|
|
|
}
|
|
|
|
#else
|
2004-08-02 00:15:44 +02:00
|
|
|
// from sha1.cpp
|
2007-04-15 06:30:52 +02:00
|
|
|
struct TORRENT_EXPORT SHA_CTX
|
2004-08-02 00:15:44 +02:00
|
|
|
{
|
|
|
|
boost::uint32_t state[5];
|
|
|
|
boost::uint32_t count[2];
|
|
|
|
boost::uint8_t buffer[64];
|
|
|
|
};
|
|
|
|
|
2007-04-15 06:30:52 +02:00
|
|
|
TORRENT_EXPORT void SHA1_Init(SHA_CTX* context);
|
|
|
|
TORRENT_EXPORT void SHA1_Update(SHA_CTX* context, boost::uint8_t const* data, boost::uint32_t len);
|
|
|
|
TORRENT_EXPORT void SHA1_Final(boost::uint8_t* digest, SHA_CTX* context);
|
|
|
|
|
|
|
|
#endif
|
2004-01-25 23:41:55 +01:00
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
|
2004-01-24 18:14:03 +01:00
|
|
|
class adler32_crc
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
adler32_crc(): m_adler(adler32(0, 0, 0)) {}
|
|
|
|
|
|
|
|
void update(const char* data, int len)
|
2004-01-26 01:21:12 +01:00
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(data != 0);
|
|
|
|
TORRENT_ASSERT(len > 0);
|
2007-03-17 18:15:16 +01:00
|
|
|
m_adler = adler32(m_adler, (const Bytef*)data, len);
|
2004-01-26 01:21:12 +01:00
|
|
|
}
|
2004-01-24 18:14:03 +01:00
|
|
|
unsigned long final() const { return m_adler; }
|
|
|
|
void reset() { m_adler = adler32(0, 0, 0); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
unsigned long m_adler;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
class hasher
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2009-11-08 04:09:19 +01:00
|
|
|
hasher()
|
2004-09-16 03:14:16 +02:00
|
|
|
{
|
2009-11-08 04:09:19 +01:00
|
|
|
#ifdef TORRENT_USE_GCRYPT
|
|
|
|
gcry_md_open(&m_context, GCRY_MD_SHA1, 0);
|
|
|
|
#else
|
2007-04-15 06:30:52 +02:00
|
|
|
SHA1_Init(&m_context);
|
2009-11-08 04:09:19 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
hasher(const char* data, int len)
|
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(data != 0);
|
|
|
|
TORRENT_ASSERT(len > 0);
|
2009-11-08 04:09:19 +01:00
|
|
|
#ifdef TORRENT_USE_GCRYPT
|
|
|
|
gcry_md_open(&m_context, GCRY_MD_SHA1, 0);
|
|
|
|
gcry_md_write(m_context, data, len);
|
|
|
|
#else
|
|
|
|
SHA1_Init(&m_context);
|
2007-04-15 06:30:52 +02:00
|
|
|
SHA1_Update(&m_context, reinterpret_cast<unsigned char const*>(data), len);
|
2009-11-08 04:09:19 +01:00
|
|
|
#endif
|
2004-09-16 03:14:16 +02:00
|
|
|
}
|
2009-11-08 04:09:19 +01:00
|
|
|
|
|
|
|
#ifdef TORRENT_USE_GCRYPT
|
|
|
|
hasher(hasher const& h)
|
|
|
|
{
|
|
|
|
gcry_md_copy(&m_context, h.m_context);
|
|
|
|
}
|
|
|
|
|
|
|
|
hasher& operator=(hasher const& h)
|
|
|
|
{
|
|
|
|
gcry_md_close(m_context);
|
|
|
|
gcry_md_copy(&m_context, h.m_context);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-11-28 23:41:21 +01:00
|
|
|
void update(std::string const& data) { update(data.c_str(), data.size()); }
|
2004-01-25 23:41:55 +01:00
|
|
|
void update(const char* data, int len)
|
2004-01-26 01:21:12 +01:00
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(data != 0);
|
|
|
|
TORRENT_ASSERT(len > 0);
|
2009-11-08 04:09:19 +01:00
|
|
|
#ifdef TORRENT_USE_GCRYPT
|
|
|
|
gcry_md_write(m_context, data, len);
|
|
|
|
#else
|
2007-04-15 06:30:52 +02:00
|
|
|
SHA1_Update(&m_context, reinterpret_cast<unsigned char const*>(data), len);
|
2009-11-08 04:09:19 +01:00
|
|
|
#endif
|
2004-01-26 01:21:12 +01:00
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2003-10-30 00:28:09 +01:00
|
|
|
sha1_hash final()
|
|
|
|
{
|
|
|
|
sha1_hash digest;
|
2009-11-08 04:09:19 +01:00
|
|
|
#ifdef TORRENT_USE_GCRYPT
|
|
|
|
gcry_md_final(m_context);
|
|
|
|
digest.assign((const char*)gcry_md_read(m_context, 0));
|
|
|
|
#else
|
2007-04-15 06:30:52 +02:00
|
|
|
SHA1_Final(digest.begin(), &m_context);
|
2009-11-08 04:09:19 +01:00
|
|
|
#endif
|
2003-10-30 00:28:09 +01:00
|
|
|
return digest;
|
|
|
|
}
|
|
|
|
|
2009-11-08 04:09:19 +01:00
|
|
|
void reset()
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_USE_GCRYPT
|
|
|
|
gcry_md_reset(m_context);
|
|
|
|
#else
|
|
|
|
SHA1_Init(&m_context);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef TORRENT_USE_GCRYPT
|
|
|
|
~hasher()
|
|
|
|
{
|
|
|
|
gcry_md_close(m_context);
|
|
|
|
}
|
|
|
|
#endif
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2009-11-08 04:09:19 +01:00
|
|
|
#ifdef TORRENT_USE_GCRYPT
|
|
|
|
gcry_md_hd_t m_context;
|
|
|
|
#else
|
2007-04-15 06:30:52 +02:00
|
|
|
SHA_CTX m_context;
|
2009-11-08 04:09:19 +01:00
|
|
|
#endif
|
2003-10-23 01:00:57 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_HASHER_HPP_INCLUDED
|
2007-06-10 22:46:09 +02:00
|
|
|
|