Creating a JWT using EdDSA/Ed25519 algorithm in C++

274 views Asked by At

I want to create a JWT usnig EdDSA algorithm. The key pair is generated by a different module. I need to read the private key from file and sign the JWT using it.

The claim will contain a custom entry along with iat and jti.

I am able to write it in python with the Cryptography package, but as I am new to C++, need some help here.

0

There are 0 answers