-
Notifications
You must be signed in to change notification settings - Fork 1
/
bn.d.ts
458 lines (458 loc) · 11.9 KB
/
bn.d.ts
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/// <reference types="node" />
/**
* Use hack to type legacy bn class.
*
* TODO: Refactor by properly extending from bn.js.
*/
declare type Endianness = 'le' | 'be';
declare type IPrimeName = 'k256' | 'p224' | 'p192' | 'p25519';
interface MPrime {
name: string;
p: BnDefinition;
n: number;
k: BnDefinition;
}
interface ReductionContext {
m: number;
prime: MPrime;
[key: string]: any;
}
declare class BnDefinition {
static BnLegacy: typeof BnDefinition;
static wordSize: 26;
constructor(number?: number | string | number[] | Uint8Array | Buffer | BnDefinition, base?: number | 'hex', endian?: Endianness);
/**
* @description create a reduction context
*/
static red(reductionContext: BnDefinition | IPrimeName): ReductionContext;
/**
* @description create a reduction context with the Montgomery trick.
*/
static mont(num: BnDefinition): ReductionContext;
/**
* @description returns true if the supplied object is a BnDefinition.js instance
*/
static isBnDefinition(b: any): b is BnDefinition;
/**
* @description returns the maximum of 2 BnDefinition instances.
*/
static max(left: BnDefinition, right: BnDefinition): BnDefinition;
/**
* @description returns the minimum of 2 BnDefinition instances.
*/
static min(left: BnDefinition, right: BnDefinition): BnDefinition;
fromHex(hex: string, opts?: {
endian: 'big' | 'little';
}): BnDefinition;
toHex(opts?: {
size?: number;
endian?: 'big' | 'little';
}): string;
fromJSON(str: string): BnDefinition;
fromNumber(n: number): BnDefinition;
fromString(str: string, base?: number): BnDefinition;
fromBuffer(buf: Buffer, opts?: {
endian: 'big' | 'little';
}): BnDefinition;
static fromBuffer(buf: Buffer, opts?: {
endian: 'big' | 'little';
}): BnDefinition;
fromFastBuffer(buf: Buffer, opts?: {
endian: 'big' | 'little';
}): BnDefinition;
/**
* Signed magnitude buffer. Most significant bit represents sign (0 = positive,
* 1 = negative).
*/
fromSm(buf: Buffer, opts?: {
endian: 'big' | 'little';
}): BnDefinition;
toSm(opts?: {
endian: 'big' | 'little';
}): Buffer;
/**
* Produce a BnDefinition from the "bits" value in a blockheader. Analagous to Bitcoin
* Core's uint256 SetCompact method. bits is assumed to be UInt32.
*/
fromBits(bits: number, opts?: {
strict: boolean;
}): BnDefinition;
/**
* Convert BnDefinition to the "bits" value in a blockheader. Analagous to Bitcoin
* Core's uint256 GetCompact method. bits is a UInt32.
*/
toBits(): number;
fromScriptNumBuffer(buf: Buffer, fRequireMinimal?: boolean, nMaxNumSize?: number): BnDefinition;
toScriptNumBuffer(): Buffer;
/**
* @description clone number
*/
clone(): BnDefinition;
/**
* @description convert to base-string and pad with zeroes
*/
toString(base?: number | 'hex', length?: number): string;
/**
* @description convert to Javascript Number (limited to 53 bits)
*/
toNumber(): number;
/**
* @description convert to JSON compatible hex string (alias of toString(16))
*/
toJSON(): string;
/**
* @description convert to byte Array, and optionally zero pad to length, throwing if already exceeding
*/
toArray(endian?: Endianness, length?: number): number[];
/**
* @description convert to an instance of `type`, which must behave like an Array
*/
toArrayLike(ArrayType: typeof Buffer, endian?: Endianness, length?: number): Buffer;
toArrayLike(ArrayType: any[], endian?: Endianness, length?: number): any[];
/**
* @description convert to Node.js Buffer (if available). For compatibility with browserify and similar tools, use this instead: a.toArrayLike(Buffer, endian, length)
*/
toBuffer(opts?: {
size?: number;
endian?: 'big' | 'little';
}): Buffer;
toFastBuffer(opts?: {
size?: number;
endian?: 'big' | 'little';
}): Buffer;
/**
* @description get number of bits occupied
*/
bitLength(): number;
/**
* @description return number of less-significant consequent zero bits (example: 1010000 has 4 zero bits)
*/
zeroBits(): number;
/**
* @description return number of bytes occupied
*/
byteLength(): number;
/**
* @description true if the number is negative
*/
isNeg(): boolean;
/**
* @description check if value is even
*/
isEven(): boolean;
/**
* @description check if value is odd
*/
isOdd(): boolean;
/**
* @description check if value is zero
*/
isZero(): boolean;
/**
* @description compare numbers and return `-1 (a < b)`, `0 (a == b)`, or `1 (a > b)` depending on the comparison result
*/
cmp(b: BnDefinition | number): -1 | 0 | 1;
/**
* @description compare numbers and return `-1 (a < b)`, `0 (a == b)`, or `1 (a > b)` depending on the comparison result
*/
ucmp(b: BnDefinition): -1 | 0 | 1;
/**
* @description compare numbers and return `-1 (a < b)`, `0 (a == b)`, or `1 (a > b)` depending on the comparison result
*/
cmpn(b: number): -1 | 0 | 1;
/**
* @description a less than b
*/
lt(b: BnDefinition | number): boolean;
/**
* @description a less than b
*/
ltn(b: number): boolean;
/**
* @description a less than or equals b
*/
lte(b: BnDefinition): boolean;
/**
* @description a less than or equals b
*/
lten(b: number): boolean;
/**
* @description a greater than b
*/
gt(b: BnDefinition | number): boolean;
/**
* @description a greater than b
*/
gtn(b: number): boolean;
/**
* @description a greater than or equals b
*/
gte(b: BnDefinition): boolean;
/**
* @description a greater than or equals b
*/
gten(b: number): boolean;
/**
* @description a equals b
*/
eq(b: BnDefinition | number): boolean;
/**
* @description a equals b
*/
eqn(b: number): boolean;
/**
* @description convert to two's complement representation, where width is bit width
*/
toTwos(width: number): BnDefinition;
/**
* @description convert from two's complement representation, where width is the bit width
*/
fromTwos(width: number): BnDefinition;
/**
* @description negate sign
*/
neg(): BnDefinition;
/**
* @description negate sign
*/
ineg(): BnDefinition;
/**
* @description absolute value
*/
abs(): BnDefinition;
/**
* @description absolute value
*/
iabs(): BnDefinition;
/**
* @description addition
*/
add(b: BnDefinition | number): BnDefinition;
/**
* @description addition
*/
iadd(b: BnDefinition): BnDefinition;
/**
* @description addition
*/
addn(b: number): BnDefinition;
/**
* @description addition
*/
iaddn(b: number): BnDefinition;
/**
* @description subtraction
*/
sub(b: BnDefinition | number): BnDefinition;
/**
* @description subtraction
*/
isub(b: BnDefinition): BnDefinition;
/**
* @description subtraction
*/
subn(b: number): BnDefinition;
/**
* @description subtraction
*/
isubn(b: number): BnDefinition;
/**
* @description multiply
*/
mul(b: BnDefinition): BnDefinition;
/**
* @description multiply
*/
imul(b: BnDefinition): BnDefinition;
/**
* @description multiply
*/
muln(b: number): BnDefinition;
/**
* @description multiply
*/
imuln(b: number): BnDefinition;
/**
* @description square
*/
sqr(): BnDefinition;
/**
* @description square
*/
isqr(): BnDefinition;
/**
* @description raise `a` to the power of `b`
*/
pow(b: BnDefinition): BnDefinition;
/**
* @description divide
*/
div(b: BnDefinition): BnDefinition;
/**
* @description divide
*/
divn(b: number): BnDefinition;
/**
* @description divide
*/
idivn(b: number): BnDefinition;
/**
* @description reduct
*/
mod(b: BnDefinition): BnDefinition;
/**
* @description reduct
*/
umod(b: BnDefinition): BnDefinition;
/**
* @deprecated
* @description reduct
*/
modn(b: number): number;
/**
* @description reduct
*/
modrn(b: number): number;
/**
* @description rounded division
*/
divRound(b: BnDefinition): BnDefinition;
/**
* @description or
*/
or(b: BnDefinition): BnDefinition;
/**
* @description or
*/
ior(b: BnDefinition): BnDefinition;
/**
* @description or
*/
uor(b: BnDefinition): BnDefinition;
/**
* @description or
*/
iuor(b: BnDefinition): BnDefinition;
/**
* @description and
*/
and(b: BnDefinition): BnDefinition;
/**
* @description and
*/
iand(b: BnDefinition): BnDefinition;
/**
* @description and
*/
uand(b: BnDefinition): BnDefinition;
/**
* @description and
*/
iuand(b: BnDefinition): BnDefinition;
/**
* @description and (NOTE: `andln` is going to be replaced with `andn` in future)
*/
andln(b: number): BnDefinition;
/**
* @description xor
*/
xor(b: BnDefinition): BnDefinition;
/**
* @description xor
*/
ixor(b: BnDefinition): BnDefinition;
/**
* @description xor
*/
uxor(b: BnDefinition): BnDefinition;
/**
* @description xor
*/
iuxor(b: BnDefinition): BnDefinition;
/**
* @description set specified bit to 1
*/
setn(b: number): BnDefinition;
/**
* @description shift left
*/
shln(b: number): BnDefinition;
/**
* @description shift left
*/
ishln(b: number): BnDefinition;
/**
* @description shift left
*/
ushln(b: number): BnDefinition;
/**
* @description shift left
*/
iushln(b: number): BnDefinition;
/**
* @description shift right
*/
shrn(b: number): BnDefinition;
/**
* @description shift right (unimplemented https://github.com/indutny/bn.js/blob/master/lib/bn.js#L2086)
*/
ishrn(b: number): BnDefinition;
/**
* @description shift right
*/
ushrn(b: number): BnDefinition;
/**
* @description shift right
*/
iushrn(b: number): BnDefinition;
/**
* @description test if specified bit is set
*/
testn(b: number): boolean;
/**
* @description clear bits with indexes higher or equal to `b`
*/
maskn(b: number): BnDefinition;
/**
* @description clear bits with indexes higher or equal to `b`
*/
imaskn(b: number): BnDefinition;
/**
* @description add `1 << b` to the number
*/
bincn(b: number): BnDefinition;
/**
* @description not (for the width specified by `w`)
*/
notn(w: number): BnDefinition;
/**
* @description not (for the width specified by `w`)
*/
inotn(w: number): BnDefinition;
/**
* @description GCD
*/
gcd(b: BnDefinition): BnDefinition;
/**
* @description Extended GCD results `({ a: ..., b: ..., gcd: ... })`
*/
egcd(b: BnDefinition): {
a: BnDefinition;
b: BnDefinition;
gcd: BnDefinition;
};
/**
* @description inverse `a` modulo `b`
*/
invm(b: BnDefinition): BnDefinition;
neq(b: BnDefinition | number): boolean;
geq(b: BnDefinition | number): boolean;
leq(b: BnDefinition | number): boolean;
copy(b: BnDefinition): void;
static _prime(name: IPrimeName): MPrime;
toRed(reductionContext: ReductionContext): any;
}
export declare const Bn: typeof BnDefinition;
export declare type Bn = BnDefinition;
export {};
//# sourceMappingURL=bn.d.ts.map