In this post, the steps for configuring Flash Builder 4.5 for iOs development have been outlined.
openssl genrsa -out C:\Temp\Khattab.key 2048
NOTE: If you get an error message saying: “unable to write ‘random state’”, you need to set the RANDFILE environment variable” as shown in the below screenshot:
unable to write ‘random state’
RANDFILE
Set RANDFILE=.rnd
openssl req -new -key C:\Temp\Khattab.key -out C:\Temp\CertificateSigningRequest.certSigningRequest -subj "/emailAddress=cuperous@gmail.com, CN=Ahmed Khattab, C=US"
NOTE: Use Safari or FireFox when accessing Apple’s Developer Website
openssl x509 -in C:\Temp\developer_identity.cer -inform DER -out C:\Temp\developer_identity.pem -outform PEM
openssl pkcs12 -export -inkey C:\Temp\Khattab.key -in C:\Temp\developer_identity.pem -out C:\Temp\iphone_dev.p12
com.xyzCompany.GeneralApps.HelloWorld
com.xyzCompany.GeneralApps.
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)