-
According to another discussion, I have tried this on Ubuntu with openSSL and set "Common Name" to quic. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I request a certificate from let'sencrypt. It is still error(0x80070057l)........Here is the code: |
Beta Was this translation helpful? Give feedback.
-
Solved~~~my mistake...I did not initialize QUIC_CREDENTIAL_CONFIG and maybe some fields are invalid value. self-signed certificate can generate by:
|
Beta Was this translation helpful? Give feedback.
Solved~~~my mistake...I did not initialize QUIC_CREDENTIAL_CONFIG and maybe some fields are invalid value.
self-signed certificate can generate by:
openssl genrsa -out ca.key 2048 openssl req -new -key ca.key -out ca.csr openssl x509 -req -days 365 -in ca.csr -signkey ca.key -out ca.crt