mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 04:27:59 +00:00
12 lines
687 B
JavaScript
12 lines
687 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.BN_LE_512_OPTS = exports.BN_LE_256_OPTS = exports.BN_BE_256_OPTS = exports.BN_LE_32_OPTS = exports.BN_BE_32_OPTS = exports.BN_LE_16_OPTS = exports.BN_LE_OPTS = exports.BN_BE_OPTS = void 0;
|
|
exports.BN_BE_OPTS = { isLe: false };
|
|
exports.BN_LE_OPTS = { isLe: true };
|
|
exports.BN_LE_16_OPTS = { bitLength: 16, isLe: true };
|
|
exports.BN_BE_32_OPTS = { bitLength: 32, isLe: false };
|
|
exports.BN_LE_32_OPTS = { bitLength: 32, isLe: true };
|
|
exports.BN_BE_256_OPTS = { bitLength: 256, isLe: false };
|
|
exports.BN_LE_256_OPTS = { bitLength: 256, isLe: true };
|
|
exports.BN_LE_512_OPTS = { bitLength: 512, isLe: true };
|