What is a provisioning profile & code signing in iOS?

What is a provisioning profile & code signing in iOS?

If somebody ask you about the iOS app deployment process, you can easily give the answer . But when they ask a level deeper, you may not have an answer. The above question is one such thing which every ios developer should know. Let?s see what it is.

Image for postjust some image!!

Source: Stackoverflow and internet ?.

Apple?s definition: A provisioning profile is a collection of digital entities that uniquely ties developers and devices to an authorized iPhone Development Team and enables a device to be used for testing.

Why Provisioning Profiles?

Unlike Android, you can?t install any app on an iOS device. It has to be signed by Apple first. However, when you?re developing an app, you probably want to test it before sending it to Apple for approval. Provisioning profile act as a link between the device and the developer account. During development, you choose which devices can run your app and which app services your app can access. A provisioning profile is downloaded from your developer account and embedded in the app bundle, and the entire bundle is code-signed. A Development Provisioning Profile must be installed on each device on which you wish to run your application code. If the information in the provisioning profile doesn?t match certain criteria, your app won?t launch.

Each Development Provisioning Profile will contains:

Image for post

  • Development Certificates ? development certificate. These are for developers who want to test the app on a physical device while writing code.
  • Unique Device Identifiers (List of devices that the app can run on)
  • an App ID (this can include a * wild card to be used for many applications with similar bundle identifiers). ? An App ID is a two-part string used to identify one or more apps from a single development team.

Devices specified within the provisioning profile can be used for testing only by those individuals whose iPhone Development Certificates are included in the profile. A single device can contain multiple provisioning profiles.

So, What is happening when we connect the device to xcode and installs the app??

When you install the application on a device the following things happens:

  • the provisioning profile in the Mac goes to the developer certificate in your key chain.
  • xcode uses the certificate to sign the code.
  • device?s UUID is matched with the IDs in the provisioning profile.
  • AppID in the provisioning profile is matched with the bundle identifier in the app.
  • The entitlements required are associated with the App ID.
  • The private key used to sign the app matches the public key in the certificate.

Here is a screenshot from xcode signing section:

Image for post

SO, from the above image, you can see that AppID is checked, certificate is validated, Team is matched, capabilities and entitlements are matched .

If all the above steps are successful the signed binary is sent to the device and is validated against the same provisioning profile in the app and finally launched. If anyone of these conditions fail, then the app will not install ? and you?ll see a greyed-out app icon.

The difference between Development and Distribution Profiles is that Distribution Profiles don?t specify any Device IDs. If you want to release an App which should be limited to a number of registered devices, you need to use an Ad-Hoc profile for that.

Distribution Profiles is used to submit app to the App Store for distribution. After the app is reviewed by apple they sign in the app with their own signature that can run on any device.

That?s all fine, But what is code signing?

Signing your app allows iOS to identify who signed your app and to verify that your app hasn?t been modified since you signed it. The Signing Identity consists of a public-private key pair that Apple creates for you.

Asymmetric cryptography

Asymmetric cryptography uses a public key and a private key. The users have to keep their private key for themselves, but they can share the public key. And using those public and private keys, a user can prove that he is indeed himself.

How asymmetric cryptography works??

Assume there is a UserA and UserB .

  • UserA create a PrivateKeyA + PublicKeyA.
  • UserB create a PrivateKeyB + PublicKeyB.

To secure the communication between UserA and UserB,

  • UserA shares his PublicKeyA with UserB .
  • UserB shares his PublicKeyB with UserA.

? and both users keep the private key with themselves.

When UserA sends a message to UserB,

  • UserA encrypts the message with UserB?s PublicKeyB and send the message.
  • This message can only be decrypted using UserB?s PrivateKeyB.

? The same thing happens when the UserB sends a message to UserA.

Watch this video for more understanding about asymmetric cryptography : Youtube video by savjee.

What is CSR(Certificate Signing Request) in iOS ??

CSR is not something that is used only in iOS. It is used in many places.

A CSR or Certificate Signing request is a block of encoded text that is given to a Certificate Authority when applying for a certificate.

Here , we create a CSR and give it to apple which will create the certificate for you. It also contains the public key that will be included in the certificate. A private key is usually created at the same time that you create the CSR, making a key pair. A certificate authority will use a CSR to create your certificate, but it does not need your private key. You need to keep your private key secret. The certificate created with a particular CSR will only work with the private key that was generated with it. So if you lose the private key, the certificate will no longer work.

(optional ? refer this link to understand how CSR works for SSL certificates. The procedure and working is almost similar)

The process :

  • Create a Certificate Signing Request (CSR) through the Keychain Access Application.
  • Keychain Application will create a private key(private key will be stored in the keychain) and a certSigningRequest file which you?ll then upload to Apple.
  • Apple will proof the request and issue a certificate for you. The Certificate will contain the public key that can be downloaded to your system. After you downloaded it you need to put it into your Keychain Access Application by double clicking it. The Certificate will be pushed into the Keychain and paired with the private key to form the Code Signing Identity.
  • Finally, at the time of app installation, the private key used to sign the app matches the public key in the certificate. If it fails, app is not installed.

That?s it. !

Enjoy!!

If you enjoyed reading this post, please share and give some clapps so others can find it ????? !!!!

You can follow me on Medium for fresh articles. Also, connect with me on LinkedIn and Twitter.

If you have any comment, question, or recommendation, feel free to post them in the comment section below!

12

No Responses

Write a response