I used to access the SecureRandom in jsbn.js this way
var jsbn = require('jsbn');
var SecureRandom = jsbn.SecureRandom;
var secureRandom = new SecureRandom();
secureRandom.nextBytes(x);
How do I access it in jsbn.ts? As there seem to be limited functions to import
import jsbn, {BigInteger, RandomGenerator as SecureRandom} from "jsbn";
package.json
"dependencies": {
"jsbn": "^1.1.0"
},
"devDependencies": {
"@types/jsbn": "^1.2.29",
}
Thank you.
The @types/jsbn npm package only provides the declaration of an interface for the RandomGenerator and does not export the SecureRandom:
You should implement that interface and this nextBytes method with a prng as WebAPI Crypto getRandomValues()
For example: