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.