The Care and Feeding of Developer ID

This thread has been locked by a moderator.

I regularly see folks run into problems with their Developer ID signing identities. Historically I pointed them to my posts on this thread, but I’ve decided to collect these ideas together in one place.

If you have questions or comments, start a new thread here on DevForums and tag it with Developer ID so that I see it.

IMPORTANT Nothing I write here on DevForums is considered official documentation. It’s just my personal ramblings based on hard-won experience. There is a bunch of official documentation that covers the topics I touch on here, including:

For a lot more information about code signing, see the Code Signing Resources pinned post.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"


The Care and Feeding of Developer ID

Most Apple signing assets are replaceable. For example, if you accidentally lose access to your Apple Development signing identity, it’s a minor inconvenience. Just use the Developer website to revoke your previous certificate and create a replacement. Or have Xcode do that for you.

IMPORTANT If you don’t understand the difference between a certificate and a digital identity, and hence signing identity, read Certificate Signing Requests Explained before reading this post.

Some signing assets are precious. Losing access to such assets has significant consequences.

Foremost amongst those are Developer ID signing identities. These allow you to sign Mac products that ship independently. Anyone with access to your Developer ID signing identity can sign code as you. This has a number of consequences, both for you and for your relationship with Apple.

Identify a Developer ID Signing Identity

A Developer ID signing identity consists of two parts: the certificate and the private key. There are two different flavours, identifiable by the subject name in the certificate:

  • Developer ID Application — This is named Developer ID Application: TTT, where TTT identifies your team. Use this to sign code and disk images.

  • Developer ID Installer — This is named Developer ID Installer: TTT, where TTT identifies your team. Use this to sign installer packages.

Note If you do KEXT development, there’s a third flavour, namely a KEXT-enabled Developer ID Application signing identity. For more details, see KEXT Code Signing Problems.

This post focuses on traditional signing identities, where you manage the private key. Xcode Cloud introduced cloud signing, where signing identities are “stored securely in the cloud”. These identities have the Managed suffix in Certificates, Identifiers, and Profiles. For example, Developer ID Application Managed is the cloud signing equivalent of Developer ID Application. To learn more about cloud signing, watch WWDC 2021 Session 10204 Distribute apps in Xcode with cloud signing. To identify these certificates ‘in the wild’, see Identifying a Cloud Managed Signing Certificate.

Limit Access to Developer ID

Anyone with your Developer ID signing identity can sign code as you. Given that, be careful to limit access to these signing identities. This is true both for large organisations and small developers.

In a large organisation, ensure that only folks authorised to ship code on behalf of your organisation have access to your Developer ID signing identities. Most organisations have some sort of release process that they use to build, test, and authorise a release. This often involves a continuous integration (CI) system. Restrict CI access to only those folks involved in the release process.

Even if you’re a small developer with no formal release process, you can still take steps to restrict access to Developer ID signing identities. See Don’t Leak Your Private Key, below.

In all cases, don’t use your Developer ID signing identities for day-to-day development. That’s what Apple Development signing identities are for.

Create Developer ID Signing Identities as the Account Holder

Because Developer ID signing identities are precious, the Developer website will only let the Account Holder create them. For instructions on how to do this, see Developer Account Help > Create certificates > Create Developer ID certificates. For more information about programme roles, see Developer > Support > Program Roles.

IMPORTANT In an Organization team it’s common for the Account Holder to be non-technical. They may need help getting this done. For hints and tips on how to avoid problems while doing this, see Don’t Lose Your Private Key and Don’t Leak Your Private Key, both below.

Limit the Number of Developer ID Signing Identities You Create

Don’t create Developer ID signing identities unnecessarily. Most folks only need to create one. Well, one Developer ID Application and maybe one Developer ID Installer. A large organisation might need more, perhaps one for each sub-unit, but that’s it.

There are two reasons why this is important:

  • The more you have, the more likely it is for one to get into the wrong hands. Remember that anyone with your Developer ID signing identity can sign code as you.

  • The Developer website limits you to 5 Developer ID certificates.

Note I can never remember where this limit is actually documented, so here’s the exact quote from this page:

You can create up to five Developer ID Application certificates and up to five Developer ID Installer certificates using either your developer account or Xcode.

Don’t Lose Your Private Key

There are two standard processes for creating a Developer ID signing identity:

Both processes implicitly create a private key in your login keychain. This makes it easy to lose your private key. For example:

  • If you do this on one Mac and then get a new Mac, you might forget to move the private key to the new Mac.

  • If you’re helping your Organization team’s Account Holder to create a Developer ID signing identity, you might forget to export the private key from their login keychain.

It also makes it easy to accidentally leave a copy of the private key on a machine that doesn’t need it; see Don’t Leak Your Private Key, below, for specific advice on that front.

Every time you create a Developer ID signing identity, it’s a good idea to make an independent backup of it. For advice on how to do that, see Back Up Your Signing Identities, below.

That technique is also useful if you need to copy the signing identity to a continuous integration system.

If you think you’ve lost the private key for a Developer ID signing identity, do a proper search for it. Finding it will save you a bunch of grief. You might be able to find it on your old Mac, in a backup, in a backup for your old Mac, and so on. For instructions on how to extract your private key from a general backup, see Recover a Signing Identity from a Mac Backup.

If you’re absolutely sure that you previous private key is lost, use the Developer website to create a replacement signing identity.

If the Developer website won’t let you create any more because you’ve hit the limit discussed above, talk to Developer Programs Support. Go to Apple > Developer > Contact Us and follow the path Development and Technical > Certificates, Identifiers, and Provisioning Profiles.

Don’t Leak Your Private Key

Anyone with your Developer ID signing identity can sign code as you. Thus, it’s important to take steps to prevent its private key from leaking.

A critical first step is to limit access to your Developer ID signing identities. For advice on that front, see Limit Access to Developer ID, above.

In an Organization team, only the Account Holder can create Developer ID signing identities. When they do this, a copy of the identity’s private key will most likely end up in their login keychain. Once you’ve exported the signing identity, and confirmed that everything is working, make sure to delete that copy of the private key.

Some organisations have specific rules for managing Developer ID signing identities. For example, an organisation might require that the private key be stored in a hardware token, which prevents it from being exported. Setting that up is a bit tricky, but it offers important security benefits.

Even without a hardware token, there are steps you can take to protect your Developer ID signing identity. For example, you might put it in a separate keychain, one with a different password and locking policy than your login keychain. That way signing code for distribution will prompt you to unlock the keychain, which reminds you that this is a significant event and ensures that you don’t do it accidentally.

If you believe that your private key has been compromised, follow the instructions in the Compromised Certificates section of Developer > Support > Certificates.

Back Up Your Signing Identities

Given that Developer ID signing identities are precious, consider making an independent backup of them. To back up a signing identity to a PKCS#12 (.p12) file:

  1. Launch Keychain Access.

  2. At the top, select My Certificates.

  3. On the left, select the keychain you use for signing identities. For most folks this is the login keychain.

  4. Select the identity.

  5. Choose File > Export Items.

  6. In the file dialog, select Personal Information Exchange (.p12) in the File Format popup.

  7. Enter a name, navigate to your preferred location, and click Save.

  8. You might be prompted to enter the keychain password. If so, do that and click OK.

  9. You will be prompted to enter a password to protect the identity. Use a strong password and save this securely in a password manager, corporate password store, on a piece of paper in a safe, or whatever.

  10. You might be prompted to enter the keychain password again. If so, do that and click Allow.

  11. The end result is a .p12 file holding your signing identity. Save that file in a secure location, and make sure that you have a way to connect it to the password you saved in step 9.

Remember to backup all your Developer ID signing identities, including the Developer ID Installer one if you created it.

To restore a signing identity from a backup:

  1. Launch Keychain Access.

  2. Choose File > Import Items.

  3. In the open sheet, click Show Options.

  4. Use the Destination Keychain popup to select the target keychain.

  5. Navigate to and select the .p12 file, and then click Open.

  6. Enter the .p12 file’s password and click OK.

  7. If prompted, enter the destination keychain password and click OK.

Alternatively, Xcode has a feature to export and import your developer account, including your Developer ID signing identities. Do this using the action menu in Xcode > Settings > Accounts. For the details, see Xcode Help > Maintaining signing assets > Export signing certificates and provisioning profiles.

Recover a Signing Identity from a Mac Backup

If you didn’t independently backup your Developer ID signing identity, you may still be able to recover it from a general backup of your Mac. To start, work out roughly when you created your Developer ID signing identity:

  1. Download your Developer ID certificate from the Developer website.

  2. In the Finder, Quick Look it.

The Not Valid Before field is the date you’re looking for.

Now it’s time to look in your backups. The exact details depend on the backup software you’re using, but the basic process runs something like this:

  1. Look for a backup taken shortly after the date you determined above.

  2. In that backup, look for the file ~/Library/Keychains/login.keychain.

  3. Recover that to a convenient location, like your desktop. Don’t put it in ~/Library/Keychains because that’ll just confuse things.

  4. Rename it to something unique, like login-YYYY-MM-DD.keychain, where YYYY-MM-DD is the date of the backup.

  5. In Keychain Access, choose File > Add Keychain and, in the resulting standard file panel, choose that .keychain file.

  6. On the left, select login-YYYY-MM-DD.

  7. Chose File > Unlock Keychain “login-YYYY-MM-DD“.

  8. In the resulting password dialog, enter your login password at the date of the backup.

  9. At the top, select My Certificates.

  10. Look through the list of digital identities to find the Developer ID identity you want. If you don’t see the one you’re looking for, see Further Recovery Tips below.

  11. Export it using the process described at the start of Back Up Your Signing Identities.

Once you’re done, remove the keychain from Keychain Access:

  1. On the left, select the login-YYYY-MM-DD keychain.

  2. Choose File > Delete Keychain “login-YYYY-MM-DD”.

  3. In the confirmation alert, click Remove Reference.

The login-YYYY-MM-DD.keychain is now just a file. You can trash it, keep it, whatever, at your discretion.

This process creates a .p12 file. To work with that, import it into your keychain using the process described at the end of Back Up Your Signing Identities.

IMPORTANT Keep that .p12 file as your own independent backup of your signing identity.

Further Recovery Tips

If, in the previous section, you can’t find the Developer ID identity you want, there are a few things you might do:

  • Look in a different backup.

  • If your account has more than one keychain, look in your other keychains.

  • If you have more than one login account, look at the keychains for your other accounts.

  • If you have more than one Mac, look at the backups for your other Macs.

  • The login-YYYY-MM-DD keychain might have the private key but not the certificate. Add your Developer ID certificate to that keychain to see if it pairs with a private key.

Revision History

Up vote post of eskimo
2.2k views