python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Is there a way for generation of ecdh shared key in 'node-forge' or other checked and secure js oackage
Well what i want to obtain is something like this
import * as forge from 'node-forge'
const aliceKey = forge.pki.ed25519.generateKeyPair();
const bobKey = forge.pki.ed25519.generateKeyPair();
//get s...
MaciejDot
Votes: 0
Answers: 1
How to add CRLs to caStore created by Node-forge
I have create a caStore and want to add CRLs to it so that the caStore can reject the same when came across. I have looked everywhere but unable to find the same
const pki = forge.pki;
const asn1 ...

karanpreet singh wadhwa
Votes: 0
Answers: 0
ng build error for package node-forge during deployment
We are getting below error in our docker deployment
ng build fails due to URLSearchParams is not defined at Object. (/usr/src/app/node_modules/node-forge/lib/log.js:305:5)

Sumit Ganjave
Votes: 0
Answers: 1
Error: Encrypted message length is invalid. - Websocket messes up RSA encrypted data
For my new project I wanted to use RSA public/private key encryption for the WebSocket API to ensure security. I use node.js v16 with the ws package (to handle connections) and node-forge (to generate...

sys-256
Votes: 0
Answers: 0