【发布时间】:2013-09-09 23:27:03
【问题描述】:
在受人尊敬的网站 Network Solutions 上提交 CSR 时,我收到一条错误消息 The CSR provided uses an unsupported signature algorithm. Supported algorithms are: md5withrsa, sha1withrsa, oid 1.2.840.113549.1.1.4, oid 1.2.840.113549.1.1.5。我正在使用的命令如下,不知道为什么当这正是他们在their site 和Apache Tomcat 网站上列出的内容时不接受它
keytool -genkey -keyalg RSA -alias tomcat -keystore domain_keystore.jks -keysize 2048
后跟命令生成CSR
keytool -certreq -alias tomcat -file domain_keystore.csr -keystore domain_keystore.jks
当我使用openssl 生成密钥时,它会被Network Solutions 接受。但是有些我无法让它与tomcat一起运行:(
openssl req -nodes -newkey rsa:2048 -keyout www_website_com.key -out www_website_com.csr
在 Mac + Tomcat 上安装第三方证书时已筋疲力尽,需要帮助
【问题讨论】:
标签: ssl openssl tomcat7 ssl-certificate keytool