Run the following in the terminal:
openssl genrsa -out mykey.key 2048
Save this private key file as you will use it later.
Run the following command, replacing the email address, CN name (certificate name), and C (country) as follows:
openssl req -new -key mykey.key -out CertificateSigningRequest.certSigningRequest -subj "/emailAddress=yourAddress@example.com, CN=John Doe, C=US"
Now in iOS Dev Portal just use the generated CertificateSigningRequest.certSigningRequest
Fernando madruga
source share