mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-24 21:47:57 +00:00
37 lines
1.3 KiB
JavaScript
37 lines
1.3 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.bnToU8a = bnToU8a;
|
|
const toBn_js_1 = require("./toBn.js");
|
|
const DEFAULT_OPTS = { bitLength: -1, isLe: true, isNegative: false };
|
|
/**
|
|
* @name bnToU8a
|
|
* @summary Creates a Uint8Array object from a BN.
|
|
* @description
|
|
* `null`/`undefined`/`NaN` inputs returns an empty `Uint8Array` result. `BN` input values return the actual bytes value converted to a `Uint8Array`. Optionally convert using little-endian format if `isLE` is set.
|
|
* @example
|
|
* <BR>
|
|
*
|
|
* ```javascript
|
|
* import { bnToU8a } from '@pezkuwi/util';
|
|
*
|
|
* bnToU8a(new BN(0x1234)); // => [0x12, 0x34]
|
|
* ```
|
|
*/
|
|
function bnToU8a(value, { bitLength = -1, isLe = true, isNegative = false } = DEFAULT_OPTS) {
|
|
const valueBn = (0, toBn_js_1.bnToBn)(value);
|
|
const byteLength = bitLength === -1
|
|
? Math.ceil(valueBn.bitLength() / 8)
|
|
: Math.ceil((bitLength || 0) / 8);
|
|
if (!value) {
|
|
return bitLength === -1
|
|
? new Uint8Array(1)
|
|
: new Uint8Array(byteLength);
|
|
}
|
|
const output = new Uint8Array(byteLength);
|
|
const bn = isNegative
|
|
? valueBn.toTwos(byteLength * 8)
|
|
: valueBn;
|
|
output.set(bn.toArray(isLe ? 'le' : 'be', byteLength), 0);
|
|
return output;
|
|
}
|