openssl - Error while creating iOS Developer CSR for iOS -
i trying generate certificate request ios developer certificate. error below (unknown option cn=...
). able generate private key fine, next step - generating cert request failing.
openssl req -new -key privatekey.key -out certificatesigningrequest.certsigningrequest \ -subj “/emailaddress=myaddress@yahoo.com, cn=myaccountname, c=us”
results in:
unknown option cn=myaccountname
the way have formated request incorrect.
use /
separate subject information. use '
instead of "
openssl req -new -key serverkey.pem -out certificatesigningrequest.certsigningrequest -subj '/emailaddress=myaddress@yahoo.com/cn=myaccountname/c=us'
Comments
Post a Comment