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

Popular posts from this blog

IF statement in MySQL trigger -

c++ - What does MSC in "// appease MSC" comments mean? -

android - MPAndroidChart - How to add Annotations or images to the chart -