MCPcopy Index your code
hub / github.com/andyperlitch/jsbn

github.com/andyperlitch/jsbn @v1.1.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v1.1.0 ↗ · + Follow
115 symbols 160 edges 2 files 0 documented · 0%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

jsbn: javascript big number

Tom Wu's Original Website

I felt compelled to put this on github and publish to npm. I haven't tested every other big integer library out there, but the few that I have tested in comparison to this one have not even come close in performance. I am aware of the bi module on npm, however it has been modified and I wanted to publish the original without modifications. This is jsbn and jsbn2 from Tom Wu's original website above, with the module pattern applied to prevent global leaks and to allow for use with node.js on the server side.

usage

var BigInteger = require('jsbn').BigInteger;

var bi = new BigInteger('91823918239182398123');
console.log(bi.bitLength()); // 67

API

bi.toString()

returns the base-10 number as a string

bi.negate()

returns a new BigInteger equal to the negation of bi

bi.abs

returns new BI of absolute value

bi.compareTo

bi.bitLength

bi.mod

bi.modPowInt

bi.clone

bi.intValue

bi.byteValue

bi.shortValue

bi.signum

bi.toByteArray

bi.equals

bi.min

bi.max

bi.and

bi.or

bi.xor

bi.andNot

bi.not

bi.shiftLeft

bi.shiftRight

bi.getLowestSetBit

bi.bitCount

bi.testBit

bi.setBit

bi.clearBit

bi.flipBit

bi.add

bi.subtract

bi.multiply

bi.divide

bi.remainder

bi.divideAndRemainder

bi.modPow

bi.modInverse

bi.pow

bi.gcd

bi.isProbablePrime

Core symbols most depended-on inside this repo

nbi
called by 35
index.js
nbv
called by 8
index.js
nbits
called by 4
index.js
int2char
called by 2
index.js
intAt
called by 2
index.js
rng_seed_time
called by 2
index.js
lbit
called by 1
index.js
cbit
called by 1
index.js

Shape

Function 115

Languages

TypeScript100%

Modules by API surface

index.js115 symbols

For agents

$ claude mcp add jsbn \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page