forked from bitpay/bitpay-php-keyutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBcEngine.php
240 lines (204 loc) · 5.15 KB
/
BcEngine.php
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<?php
namespace BitPayKeyUtils\Math;
use Exception;
class BcEngine implements EngineInterface
{
const HEX_CHARS = '0123456789abcdef';
/**
*/
public function __construct()
{
bcscale(0);
}
/**
* @param string $a Numeric String
* @param string $b Numeric String
* @return string
* @throws Exception
* @throws Exception
* @throws Exception
*/
public function add($a, $b)
{
$a = $this->input($a);
$b = $this->input($b);
return bcadd($a, $b);
}
public function input($x)
{
if (empty($x)) {
return '0';
}
$x = strtolower(trim($x));
if (preg_match('/^(-?)0x([0-9a-f]+)$/', $x, $matches)) {
$sign = $matches[1];
$hex = $matches[2];
for ($dec = '0', $i = 0; $i < strlen($hex); $i++) {
$current = strpos('0123456789abcdef', $hex[$i]);
$dec = bcadd(bcmul($dec, 16), $current);
}
return $sign . $dec;
} elseif (preg_match('/^-?[0-9]+$/', $x)) {
return $x;
} else {
throw new Exception("The input must be a numeric string in decimal or hexadecimal
(with leading 0x) format.\n" . var_export($x, true));
}
}
/**
* @param string $a Numeric String
* @param string $b Numeric String
* @return int
* @throws Exception
* @throws Exception
* @throws Exception
*/
public function cmp($a, $b)
{
$a = $this->input($a);
$b = $this->input($b);
return bccomp($a, $b);
}
/**
* @param string $a Numeric String
* @param string $b Numeric String
* @return string|null
* @throws Exception
* @throws Exception
* @throws Exception
*/
public function div($a, $b)
{
$a = $this->input($a);
$b = $this->input($b);
return bcdiv($a, $b);
}
/**
* Finds inverse number $inv for $num by modulus $mod, such as:
* $inv * $num = 1 (mod $mod)
*
* @param string $num
* @param string $mod
* @return string
* @access public
* @throws Exception
* @throws Exception
* @throws Exception
*/
public function invertm($num, $mod)
{
$num = $this->input($num);
$mod = $this->input($mod);
$x = '1';
$y = '0';
$num1 = $mod;
do {
$tmp = bcmod($num, $num1);
$q = bcdiv($num, $num1);
$num = $num1;
$num1 = $tmp;
$tmp = bcsub($x, bcmul($y, $q));
$x = $y;
$y = $tmp;
} while (bccomp($num1, '0'));
if (bccomp($x, '0') < 0) {
$x = bcadd($x, $mod);
}
if (substr($num, 0, 1) === '-') {
$x = bcsub($mod, $x);
}
return $x;
}
/**
* @param string $a Numeric String
* @param string $b Numeric String
* @return string|null
* @throws Exception
* @throws Exception
* @throws Exception
*/
public function mod($a, $b)
{
$a = $this->input($a);
$b = $this->input($b);
if (substr($a, 0, 1) === '-') {
return bcadd(bcmod($a, $b), $b);
}
return bcmod($a, $b);
}
/**
* @param string $a Numeric String
* @param string $b Numeric String
* @return string
* @throws Exception
* @throws Exception
* @throws Exception
*/
public function mul($a, $b)
{
$a = $this->input($a);
$b = $this->input($b);
return bcmul($a, $b);
}
/**
* @param string $a Numeric String
* @param string $b Numeric String
* @return string
* @throws Exception
* @throws Exception
* @throws Exception
*/
public function pow($a, $b)
{
$a = $this->input($a);
$b = $this->input($b);
return bcpow($a, $b);
}
/**
* @param string $a Numeric String
* @param string $b Numeric String
* @return string
* @throws Exception
* @throws Exception
* @throws Exception
*/
public function sub($a, $b)
{
$a = $this->input($a);
$b = $this->input($b);
return bcsub($a, $b);
}
/**
* Function to determine if two numbers are
* co-prime according to the Euclidean algo.
*
* @param string $a First param to check.
* @param string $b Second param to check.
* @return bool Whether the params are cp.
*/
public function coprime($a, $b)
{
$small = 0;
$diff = 0;
while (bccomp($a, '0') > 0 && bccomp($b, '0') > 0) {
if (bccomp($a, $b) == -1) {
$small = $a;
$diff = bcmod($b, $a);
}
if (bccomp($a, $b) == 1) {
$small = $b;
$diff = bcmod($a, $b);
}
if (bccomp($a, $b) == 0) {
$small = $a;
$diff = bcmod($b, $a);
}
$a = $small;
$b = $diff;
}
if (bccomp($a, '1') == 0) {
return true;
}
return false;
}
}