Skip to content

Instantly share code, notes, and snippets.

@luxin88
Created August 30, 2019 01:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luxin88/dd9ea7e02b2a8047198d637695d8374c to your computer and use it in GitHub Desktop.
Save luxin88/dd9ea7e02b2a8047198d637695d8374c to your computer and use it in GitHub Desktop.
生成dhparam.pem文件
openssl dhparam -out /etc/ssl/certs/dhparam.pem 4096 #常规做法,非常慢
openssl dhparam -dsaparam -out /etc/ssl/certs/dhparam.pem 4096 #这个速度比较快,原因还没有去研究
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment