Maybe stop using a dangerous and abandoned package bignum
?
#3
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi!
I'm taking this nontrivial issue from #1.
npm audit fix
warns about a vulnerability:Here
bignum
is used in the node part, andbn.js
is for browser.eccrypto
doesn't depend on any of them directly, butbn.js
is one of it's final dependencies:The
bn.js
has no found vulnerabilities and is more recent:So I was going to replace usage of the
bignum
by thebn.js
and see what happen to the tests and sample code. The bignum page though suggests switching toBigInt
instead.