You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To import a DTLS certificate and private key from a file, you should first generate an SSL certificate and private key file or obtain them from a Certificate Authority (CA) service.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
To import a DTLS certificate and private key from a file, you should first generate an SSL certificate and private key file or obtain them from a Certificate Authority (CA) service.
openssl genrsa -out dtls.key 2048 openssl req -new -x509 -key dtls.key -out dtls.crt -days 3650 \ -subj "/C=CA/ST=Toronto/L=Toronto/O=Me/OU=Me/CN=ffmpeg.org"
Then use
-cert_file
and-key_file
to load it:It works.
Beta Was this translation helpful? Give feedback.
All reactions