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)
Verify Phantom signature in C++ server
I'm building a online game with a Phantom wallet login. My server is written in C++ and I want to make the signature verification there. The connection between client and server is a socket connection...
Bastien Faivre
Votes: 0
Answers: 1
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 verify jwt token in spring boot?
I want to implement JWT verification in my spring boot application. The algorithm we used for signing token is Ed25519\EDDSA .
I don't find right dependency/library to implement Jwt verifier using ED2...
Gokul Kulanthaivel
Votes: 0
Answers: 1
How do you load an ed25519 key string into nodejs?
I can generate a key with crypto.generateKeyPairSync()
But how do I go about loading it from a string/file?
KI4JGT
Votes: 0
Answers: 0