mozilla/node-srp

use 'bignum' instead of 'bigint' to make dependency builds easier

warner opened this issue · 1 comments

@dannycoates has a patch to switch node-srp away from the "bigint" library in favor of the "bignum" library. This makes it possible to use node-srp with a simple "npm install". The "bigint" library depends upon having a pre-installed libgmp available on the system, whereas "bignum" apparently gets its math routines from OpenSSL, which is usually installed along with node itself.

bdc71ec is a patch which makes this change.

This was closed by #16.