quiche icon indicating copy to clipboard operation
quiche copied to clipboard

How to use x/ed25519 with Quiche?

Open catid opened this issue 1 year ago • 0 comments

Just got my C++ Quiche-based client/server application working today using RSA keys. This software library is awesome!

I'd prefer to be using ECC certificates.

For example this does not work:

openssl req -newkey ed25519:256 -nodes -keyout certificate.key -x509 -out certificate.pem -subj '/CN=Test Certificate'

But this works:

openssl req -newkey rsa:2048 -nodes -keyout certificate.key -x509 -out certificate.pem -subj '/CN=Test Certificate'

Any suggestions for how to do this properly?

catid avatar Jul 20 '24 00:07 catid