Created
August 30, 2019 01:57
-
-
Save luxin88/dd9ea7e02b2a8047198d637695d8374c to your computer and use it in GitHub Desktop.
生成dhparam.pem文件
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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