-
I am currently trying to implement a TLS connection using the openssl C API. I would like the connection to use the KEM TLS handshake. As I understand it, the server needs to have a certificate containing its KEM public key. However, so far I have been unable to generate a valid certificate containing the KEM key. When i look into how to generate a certificate on the openssl documentation I find the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Where did you get this understanding from? Please see our usage sample. Please note that the cert needs to contain a sig alg, not a KEM alg. |
Beta Was this translation helpful? Give feedback.
Pass a suitable
-groups
command line parameter as per the sample codePlease look up the API that the
-groups
command line parameter invokes.