summaryrefslogtreecommitdiffstats
path: root/libktorrent/mse/bigint.h
blob: ad94d2066009b30ad27e562a31a2237dd8e43515 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/***************************************************************************
 *   Copyright (C) 2005 by Joris Guisson                                   *
 *   joris.guisson@gmail.com                                               *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.             *
 ***************************************************************************/
#ifndef MSEBIGINT_H
#define MSEBIGINT_H

#include <qstring.h>
#include <util/constants.h>
#include <stdio.h>
#include <gmp.h>

using bt::Uint8;
using bt::Uint16;
using bt::Uint32;
using bt::Uint64;

namespace mse
{

	/**
	 * @author Joris Guisson <joris.guisson@gmail.com>
	 * 
	 * Class which can hold an arbitrary large integer. This will be a very important part of our
	 * MSE implementation.
	*/
	class BigInt
	{
	public:
		/**
		 * Create a big integer, with num_bits bits.
		 * All bits will be set to 0.
		 * @param num_bits The number of bits
		 */
		BigInt(Uint32 num_bits = 0);
		
		/**
		 * Create a big integer of a string. The string must be
		 * a hexadecimal representation of an integer. For example :
		 * 12AFFE123488BBBE123
		 * 
		 * Letters can be upper or lower case. Invalid chars will create an invalid number.
		 * @param value The hexadecimal representation of the number
		 */
		BigInt(const QString & value);
		
		/**
		 * Copy constructor.
		 * @param bi BigInt to copy
		 */
		BigInt(const BigInt & bi);
		virtual ~BigInt();
		
		/**
		 * Assignment operator.
		 * @param bi The BigInt to copy
		 * @return *this
		 */
		BigInt & operator = (const BigInt & bi);
		
		/**
		 * Calculates
		 * (x ^ e) mod d 
		 * ^ is power
		 */
		static BigInt powerMod(const BigInt & x,const BigInt & e,const BigInt & d);
		
		/// Make a random BigInt
		static BigInt random();
		
		/// Export the bigint ot a buffer
		Uint32 toBuffer(Uint8* buf,Uint32 max_size) const;
		
		/// Make a BigInt out of a buffer
		static BigInt fromBuffer(const Uint8* buf,Uint32 size);
		
	private:
		mpz_t val;
	};

}

#endif