summaryrefslogtreecommitdiffstats
path: root/libktorrent/mse/bigint.cpp
blob: e2746f6c9a4411fda1a91484b457f8852e15a107 (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
99
100
/***************************************************************************
 *   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.             *
 ***************************************************************************/
#include <time.h>
#include <string.h>
#include <stdlib.h>
#include <util/log.h>
#include <util/functions.h>
#include <torrent/globals.h>
#include "bigint.h"

using namespace bt;

namespace mse
{


	BigInt::BigInt(Uint32 num_bits)
	{
		mpz_init2(val,num_bits);	
	}
		
	BigInt::BigInt(const TQString & value)
	{
		mpz_init2(val,(value.length() - 2)*4);
		mpz_set_str(val,value.ascii(),0);	
	}
		
	BigInt::BigInt(const BigInt & bi)
	{
		mpz_set(val,bi.val);
	}
	
	BigInt::~BigInt()
	{
		mpz_clear(val);
	}
	
	
	BigInt & BigInt::operator = (const BigInt & bi)
	{
		mpz_set(val,bi.val);
		return *this;
	}
	
	BigInt BigInt::powerMod(const BigInt & x,const BigInt & e,const BigInt & d)
	{
		BigInt r;
		mpz_powm(r.val,x.val,e.val,d.val);
		return r;
	}
	
	BigInt BigInt::random()
	{
		static Uint32 rnd = 0;
		if (rnd % 10 == 0)
		{
			TimeStamp now = bt::GetCurrentTime();
			srand(now);
			rnd = 0;
		}
		rnd++;
		Uint8 tmp[20];
		for (Uint32 i = 0;i < 20;i++)
			tmp[i] = (Uint8)rand() % 0x100;
		
		return BigInt::fromBuffer(tmp,20);
	}

	Uint32 BigInt::toBuffer(Uint8* buf,Uint32 max_size) const
	{
		size_t foo;
		mpz_export(buf,&foo,1,1,1,0,val);
		return foo;
	}
	
	BigInt BigInt::fromBuffer(const Uint8* buf,Uint32 size)
	{
		BigInt r(size*8);
		mpz_import(r.val,size,1,1,1,0,buf);
		return r;
	}
	
}