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)
Can anyone explain what are these parameters for this function?
int EC_POINT_set_compressed_coordinates_GFp
(const EC_GROUP *group, EC_POINT *p,
const BIGNUM *x, int y_bit, BN_CTX *ctx);
I just want to set the randomly generated ECDH public key as the X9.62 compre...
CPPDev
Votes: 0
Answers: 0
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
'Operation is not supported on this platform' when converting ECDH public key to byte array
I have a client application which can be used from both windows and mac os. The application is using ECDH P-384 for key generation. I have below lines of code:
var client = ECDiffieHellman.Create(ECCu...
meg1311
Votes: 0
Answers: 0