mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-22 14:12:07 +00:00
21 lines
418 B
JavaScript
21 lines
418 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const { jsbn: { BigInteger } } = require('node-forge');
|
||
|
|
||
|
class BigNumber {
|
||
|
constructor(value = '') {
|
||
|
this._n = new BigInteger(value);
|
||
|
}
|
||
|
|
||
|
toBEBuffer(length = undefined) {
|
||
|
const arr = this._n.toByteArray();
|
||
|
if (length && arr.length > length)
|
||
|
throw new Error('Number out of range.');
|
||
|
while (arr.length < length)
|
||
|
arr.unshift(0);
|
||
|
return Buffer.from(arr);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = BigNumber;
|