premiere-libtorrent/include/libtorrent/pe_crypto.hpp

206 lines
5.8 KiB
C++
Raw Normal View History

2007-06-06 02:41:20 +02:00
/*
2014-02-23 20:12:25 +01:00
Copyright (c) 2007-2014, Un Shyam & Arvid Norberg
2007-06-06 02:41:20 +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_DISABLE_ENCRYPTION
#ifndef TORRENT_PE_CRYPTO_HPP_INCLUDED
#define TORRENT_PE_CRYPTO_HPP_INCLUDED
#include "libtorrent/config.hpp"
2009-11-08 04:09:19 +01:00
#ifdef TORRENT_USE_GCRYPT
#include <gcrypt.h>
#elif defined TORRENT_USE_OPENSSL
2007-06-06 02:41:20 +02:00
#include <openssl/rc4.h>
#else
// RC4 state from libtomcrypt
struct rc4 {
int x, y;
unsigned char buf[256];
};
void TORRENT_EXTRA_EXPORT rc4_init(const unsigned char* in, unsigned long len, rc4 *state);
unsigned long TORRENT_EXTRA_EXPORT rc4_encrypt(unsigned char *out, unsigned long outlen, rc4 *state);
2009-11-08 04:09:19 +01:00
#endif
2007-06-06 02:41:20 +02:00
2007-09-01 06:08:39 +02:00
#include "libtorrent/peer_id.hpp" // For sha1_hash
#include "libtorrent/assert.hpp"
2007-06-06 02:41:20 +02:00
namespace libtorrent
{
class TORRENT_EXTRA_EXPORT dh_key_exchange
2007-06-06 02:41:20 +02:00
{
public:
dh_key_exchange();
2009-11-08 04:09:19 +01:00
bool good() const { return true; }
2007-06-06 02:41:20 +02:00
// Get local public key, always 96 bytes
char const* get_local_key() const;
2007-06-06 02:41:20 +02:00
// read remote_pubkey, generate and store shared secret in
2009-11-08 04:09:19 +01:00
// m_dh_shared_secret.
int compute_secret(const char* remote_pubkey);
2007-06-06 02:41:20 +02:00
2009-11-08 04:09:19 +01:00
char const* get_secret() const { return m_dh_shared_secret; }
2008-08-21 01:05:12 +02:00
sha1_hash const& get_hash_xor_mask() const { return m_xor_mask; }
2007-06-06 02:41:20 +02:00
private:
2009-11-08 04:09:19 +01:00
int get_local_key_size() const
{ return sizeof(m_dh_local_key); }
2007-06-06 02:41:20 +02:00
char m_dh_local_key[96];
2009-11-08 04:09:19 +01:00
char m_dh_local_secret[96];
char m_dh_shared_secret[96];
2008-08-21 01:05:12 +02:00
sha1_hash m_xor_mask;
2007-06-06 02:41:20 +02:00
};
2011-08-29 04:00:17 +02:00
struct encryption_handler
{
virtual void set_incoming_key(unsigned char const* key, int len) = 0;
virtual void set_outgoing_key(unsigned char const* key, int len) = 0;
virtual void encrypt(char* pos, int len) = 0;
virtual void decrypt(char* pos, int len) = 0;
2011-09-18 22:42:35 +02:00
virtual ~encryption_handler() {}
2011-08-29 04:00:17 +02:00
};
struct rc4_handler : encryption_handler
2007-06-06 02:41:20 +02:00
{
public:
// Input longkeys must be 20 bytes
rc4_handler()
: m_encrypt(false)
, m_decrypt(false)
2007-06-06 02:41:20 +02:00
{
2009-11-08 04:09:19 +01:00
#ifdef TORRENT_USE_GCRYPT
gcry_cipher_open(&m_rc4_incoming, GCRY_CIPHER_ARCFOUR, GCRY_CIPHER_MODE_STREAM, 0);
gcry_cipher_open(&m_rc4_outgoing, GCRY_CIPHER_ARCFOUR, GCRY_CIPHER_MODE_STREAM, 0);
#endif
};
void set_incoming_key(unsigned char const* key, int len)
{
m_decrypt = true;
#ifdef TORRENT_USE_GCRYPT
gcry_cipher_close(m_rc4_incoming);
gcry_cipher_open(&m_rc4_incoming, GCRY_CIPHER_ARCFOUR, GCRY_CIPHER_MODE_STREAM, 0);
gcry_cipher_setkey(m_rc4_incoming, key, len);
2009-11-08 04:09:19 +01:00
#elif defined TORRENT_USE_OPENSSL
RC4_set_key(&m_remote_key, len, key);
#else
rc4_init(key, len, &m_rc4_incoming);
2009-11-08 04:09:19 +01:00
#endif
2007-06-06 02:41:20 +02:00
// Discard first 1024 bytes
char buf[1024];
decrypt(buf, 1024);
}
2007-06-06 02:41:20 +02:00
void set_outgoing_key(unsigned char const* key, int len)
{
m_encrypt = true;
#ifdef TORRENT_USE_GCRYPT
gcry_cipher_close(m_rc4_outgoing);
gcry_cipher_open(&m_rc4_outgoing, GCRY_CIPHER_ARCFOUR, GCRY_CIPHER_MODE_STREAM, 0);
gcry_cipher_setkey(m_rc4_outgoing, key, len);
#elif defined TORRENT_USE_OPENSSL
RC4_set_key(&m_local_key, len, key);
#else
rc4_init(key, len, &m_rc4_outgoing);
#endif
// Discard first 1024 bytes
char buf[1024];
encrypt(buf, 1024);
}
~rc4_handler()
2009-11-08 04:09:19 +01:00
{
#ifdef TORRENT_USE_GCRYPT
gcry_cipher_close(m_rc4_incoming);
gcry_cipher_close(m_rc4_outgoing);
#endif
};
2007-06-06 02:41:20 +02:00
void encrypt(char* pos, int len)
2007-06-06 02:41:20 +02:00
{
if (!m_encrypt) return;
2007-12-27 04:43:02 +01:00
TORRENT_ASSERT(len >= 0);
TORRENT_ASSERT(pos);
2007-06-06 02:41:20 +02:00
2009-11-08 04:09:19 +01:00
#ifdef TORRENT_USE_GCRYPT
gcry_cipher_encrypt(m_rc4_outgoing, pos, len, 0, 0);
#elif defined TORRENT_USE_OPENSSL
RC4(&m_local_key, len, (const unsigned char*)pos, (unsigned char*)pos);
#else
rc4_encrypt((unsigned char*)pos, len, &m_rc4_outgoing);
2009-11-08 04:09:19 +01:00
#endif
2007-06-06 02:41:20 +02:00
}
void decrypt(char* pos, int len)
2007-06-06 02:41:20 +02:00
{
if (!m_decrypt) return;
2007-12-27 04:43:02 +01:00
TORRENT_ASSERT(len >= 0);
TORRENT_ASSERT(pos);
2007-06-06 02:41:20 +02:00
2009-11-08 04:09:19 +01:00
#ifdef TORRENT_USE_GCRYPT
gcry_cipher_decrypt(m_rc4_incoming, pos, len, 0, 0);
#elif defined TORRENT_USE_OPENSSL
RC4(&m_remote_key, len, (const unsigned char*)pos, (unsigned char*)pos);
#else
rc4_encrypt((unsigned char*)pos, len, &m_rc4_incoming);
2009-11-08 04:09:19 +01:00
#endif
2007-06-06 02:41:20 +02:00
}
private:
2009-11-08 04:09:19 +01:00
#ifdef TORRENT_USE_GCRYPT
gcry_cipher_hd_t m_rc4_incoming;
gcry_cipher_hd_t m_rc4_outgoing;
#elif defined TORRENT_USE_OPENSSL
2007-06-06 02:41:20 +02:00
RC4_KEY m_local_key; // Key to encrypt outgoing data
RC4_KEY m_remote_key; // Key to decrypt incoming data
#else
rc4 m_rc4_incoming;
rc4 m_rc4_outgoing;
2009-11-08 04:09:19 +01:00
#endif
// determines whether or not encryption and decryption is enabled
bool m_encrypt;
bool m_decrypt;
2007-06-06 02:41:20 +02:00
};
2008-12-27 17:44:20 +01:00
2007-06-06 02:41:20 +02:00
} // namespace libtorrent
#endif // TORRENT_PE_CRYPTO_HPP_INCLUDED
#endif // TORRENT_DISABLE_ENCRYPTION