Dart HTTP Server and importing a SSL Certificate

后端 未结 1 1759
太阳男子
太阳男子 2021-01-19 09:10

I have create a Dart HTTP(s) server for deploying files. I can have it run the https with a self signed cert. But how do you import a .crt properly from someone for example

相关标签:
1条回答
  • 2021-01-19 09:17

    So after a long struggle I have finally succeeded in importing a certificate from GoDaddy properly into Darts HttpServer bindSecure.

    In order to pull this off, first you must merge your key and the certificate from GoDaddy together.

    This can be done using a variation of this: openssl pkcs12 -export -in website_cert.crt -inkey website_key.key -out website.p12 -name Name-Of-Cert -passout pass:SECRET

    After... pk12util -i website.p12 -d 'sql:./' -W SECRET

    You should now see the cert with the Name-Of-Cert value, (If you have a password on the db, apply the appropriate flags) certutil -L -d 'sql:./'

    Now, verify certutil -V -u V -d 'sql:./' -n "Name-Of-Cert"

    Credit to: https://stomp.colorado.edu/blog/blog/2010/06/04/on-setting-up-mod_nss/

    0 讨论(0)
提交回复
热议问题