📄 hasher.hpp
字号:
/*Copyright (c) 2003, Arvid NorbergAll rights reserved.Redistribution and use in source and binary forms, with or withoutmodification, are permitted provided that the following conditionsare 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, THEIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSEARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BELIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, ORCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OFSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESSINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER INCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THEPOSSIBILITY OF SUCH DAMAGE.*/#ifndef TORRENT_HASHER_HPP_INCLUDED#define TORRENT_HASHER_HPP_INCLUDED#include <boost/cstdint.hpp>#include "libtorrent/peer_id.hpp"#include "libtorrent/config.hpp"#include "libtorrent/assert.hpp"#include "zlib.h"#ifdef TORRENT_USE_OPENSSLextern "C"{#include <openssl/sha.h>}#else// from sha1.cppstruct TORRENT_EXPORT SHA_CTX{ boost::uint32_t state[5]; boost::uint32_t count[2]; boost::uint8_t buffer[64];};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);#endifnamespace libtorrent{ class adler32_crc { public: adler32_crc(): m_adler(adler32(0, 0, 0)) {} void update(const char* data, int len) { TORRENT_ASSERT(data != 0); TORRENT_ASSERT(len > 0); m_adler = adler32(m_adler, (const Bytef*)data, len); } unsigned long final() const { return m_adler; } void reset() { m_adler = adler32(0, 0, 0); } private: unsigned long m_adler; }; class hasher { public: hasher() { SHA1_Init(&m_context); } hasher(const char* data, int len) { SHA1_Init(&m_context); TORRENT_ASSERT(data != 0); TORRENT_ASSERT(len > 0); SHA1_Update(&m_context, reinterpret_cast<unsigned char const*>(data), len); } void update(const char* data, int len) { TORRENT_ASSERT(data != 0); TORRENT_ASSERT(len > 0); SHA1_Update(&m_context, reinterpret_cast<unsigned char const*>(data), len); } sha1_hash final() { sha1_hash digest; SHA1_Final(digest.begin(), &m_context); return digest; } void reset() { SHA1_Init(&m_context); } private: SHA_CTX m_context; };}#endif // TORRENT_HASHER_HPP_INCLUDED
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -