File: example.js

package info (click to toggle)
node-jsbn 1.1.0%2B~1.2.29-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 172 kB
  • sloc: javascript: 1,062; makefile: 2
file content (5 lines) | stat: -rw-r--r-- 137 bytes parent folder | download | duplicates (7)
1
2
3
4
5
(function () {
  var BigInteger = jsbn.BigInteger;
  var a = new BigInteger('91823918239182398123');
  console.log(a.bitLength());
}());