2003-10-23 01:00:57 +02:00
|
|
|
/*
|
|
|
|
|
2018-04-09 09:04:33 +02:00
|
|
|
Copyright (c) 2003-2018, Arvid Norberg
|
2003-10-23 01:00:57 +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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TORRENT_HASHER_HPP_INCLUDED
|
|
|
|
#define TORRENT_HASHER_HPP_INCLUDED
|
|
|
|
|
2016-07-05 14:40:09 +02:00
|
|
|
#include "libtorrent/config.hpp"
|
2016-08-26 01:07:16 +02:00
|
|
|
#include "libtorrent/sha1_hash.hpp"
|
2016-07-22 18:31:42 +02:00
|
|
|
#include "libtorrent/span.hpp"
|
2004-09-10 02:47:30 +02:00
|
|
|
|
2016-06-18 20:01:38 +02:00
|
|
|
#include <cstdint>
|
2016-04-08 04:45:23 +02:00
|
|
|
|
2016-10-04 01:32:20 +02:00
|
|
|
#include "libtorrent/aux_/disable_warnings_push.hpp"
|
2016-06-23 19:20:35 +02:00
|
|
|
#ifdef TORRENT_USE_LIBGCRYPT
|
2009-11-08 04:09:19 +01:00
|
|
|
#include <gcrypt.h>
|
2013-05-09 04:32:12 +02:00
|
|
|
|
|
|
|
#elif TORRENT_USE_COMMONCRYPTO
|
|
|
|
#include <CommonCrypto/CommonDigest.h>
|
|
|
|
|
2016-07-05 14:40:09 +02:00
|
|
|
#elif TORRENT_USE_CRYPTOAPI
|
2017-01-07 07:53:39 +01:00
|
|
|
#include "libtorrent/aux_/win_crypto_provider.hpp"
|
2016-07-05 14:40:09 +02:00
|
|
|
|
2016-06-23 19:20:35 +02:00
|
|
|
#elif defined TORRENT_USE_LIBCRYPTO
|
2013-05-09 04:32:12 +02:00
|
|
|
|
2016-07-05 14:40:09 +02:00
|
|
|
extern "C" {
|
2007-04-15 06:30:52 +02:00
|
|
|
#include <openssl/sha.h>
|
|
|
|
}
|
2013-05-09 04:32:12 +02:00
|
|
|
|
2007-04-15 06:30:52 +02:00
|
|
|
#else
|
2015-01-01 21:25:39 +01:00
|
|
|
#include "libtorrent/sha1.hpp"
|
2007-04-15 06:30:52 +02:00
|
|
|
#endif
|
2016-10-04 01:32:20 +02:00
|
|
|
#include "libtorrent/aux_/disable_warnings_pop.hpp"
|
2004-01-25 23:41:55 +01:00
|
|
|
|
2017-04-12 19:00:57 +02:00
|
|
|
namespace libtorrent {
|
|
|
|
|
2014-05-10 22:20:57 +02:00
|
|
|
// this is a SHA-1 hash class.
|
2016-10-22 17:47:24 +02:00
|
|
|
//
|
2013-08-08 03:03:54 +02:00
|
|
|
// You use it by first instantiating it, then call ``update()`` to feed it
|
|
|
|
// with data. i.e. you don't have to keep the entire buffer of which you want to
|
|
|
|
// create the hash in memory. You can feed the hasher parts of it at a time. When
|
|
|
|
// You have fed the hasher with all the data, you call ``final()`` and it
|
|
|
|
// will return the sha1-hash of the data.
|
2016-10-22 17:47:24 +02:00
|
|
|
//
|
2013-08-08 03:03:54 +02:00
|
|
|
// The constructor that takes a ``char const*`` and an integer will construct the
|
|
|
|
// sha1 context and feed it the data passed in.
|
2016-10-22 17:47:24 +02:00
|
|
|
//
|
2013-08-08 03:03:54 +02:00
|
|
|
// If you want to reuse the hasher object once you have created a hash, you have to
|
|
|
|
// call ``reset()`` to reinitialize it.
|
2016-10-22 17:47:24 +02:00
|
|
|
//
|
2016-08-26 01:07:16 +02:00
|
|
|
// The built-in software version of sha1-algorithm was implemented
|
|
|
|
// by Steve Reid and released as public domain.
|
2013-08-08 03:03:54 +02:00
|
|
|
// For more info, see ``src/sha1.cpp``.
|
2014-05-10 22:20:57 +02:00
|
|
|
class TORRENT_EXPORT hasher
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2013-05-08 09:57:16 +02:00
|
|
|
hasher();
|
2014-05-10 22:20:57 +02:00
|
|
|
|
|
|
|
// this is the same as default constructing followed by a call to
|
|
|
|
// ``update(data, len)``.
|
2016-07-05 14:40:09 +02:00
|
|
|
hasher(char const* data, int len);
|
2016-10-08 20:07:11 +02:00
|
|
|
explicit hasher(span<char const> data);
|
2016-07-05 14:40:09 +02:00
|
|
|
hasher(hasher const&);
|
|
|
|
hasher& operator=(hasher const&);
|
2009-11-08 04:09:19 +01:00
|
|
|
|
2014-05-10 22:20:57 +02:00
|
|
|
// append the following bytes to what is being hashed
|
2016-07-22 18:31:42 +02:00
|
|
|
hasher& update(span<char const> data);
|
2016-07-22 16:29:39 +02:00
|
|
|
hasher& update(char const* data, int len);
|
2015-05-23 03:38:47 +02:00
|
|
|
|
2014-05-10 22:20:57 +02:00
|
|
|
// returns the SHA-1 digest of the buffers previously passed to
|
|
|
|
// update() and the hasher constructor.
|
2013-05-08 09:57:16 +02:00
|
|
|
sha1_hash final();
|
2016-07-05 14:40:09 +02:00
|
|
|
|
2014-05-10 22:20:57 +02:00
|
|
|
// restore the hasher state to be as if the hasher has just been
|
|
|
|
// default constructed.
|
2013-05-08 09:57:16 +02:00
|
|
|
void reset();
|
2009-11-08 04:09:19 +01:00
|
|
|
|
2013-05-08 09:57:16 +02:00
|
|
|
~hasher();
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2016-06-23 19:20:35 +02:00
|
|
|
#ifdef TORRENT_USE_LIBGCRYPT
|
2009-11-08 04:09:19 +01:00
|
|
|
gcry_md_hd_t m_context;
|
2013-05-09 04:32:12 +02:00
|
|
|
#elif TORRENT_USE_COMMONCRYPTO
|
|
|
|
CC_SHA1_CTX m_context;
|
2016-07-05 14:40:09 +02:00
|
|
|
#elif TORRENT_USE_CRYPTOAPI
|
2017-01-07 07:53:39 +01:00
|
|
|
aux::crypt_hash<CALG_SHA1, PROV_RSA_FULL> m_context;
|
2016-06-23 19:20:35 +02:00
|
|
|
#elif defined TORRENT_USE_LIBCRYPTO
|
2012-12-10 11:43:39 +01:00
|
|
|
SHA_CTX m_context;
|
2009-11-08 04:09:19 +01:00
|
|
|
#else
|
2016-08-26 01:07:16 +02:00
|
|
|
sha1_ctx m_context;
|
2009-11-08 04:09:19 +01:00
|
|
|
#endif
|
2003-10-23 01:00:57 +02:00
|
|
|
};
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_HASHER_HPP_INCLUDED
|