78

In the Apple Developer Portal, in Certificates, Developer (or Distribution) it says:

"If you do not have the WWDR intermediate certificate installed, click here to download now."

I don't even know what that means. Do I need to download and run that? or do I need to only download the current certificate only?

Desert Rose
  • 3,238
  • 1
  • 27
  • 35
Shai UI
  • 45,518
  • 63
  • 187
  • 278
  • It would be helpful if the Provision Portal checked to see if you have it installed and indicated such rather than leave it open ended. – ChrisP Apr 12 '12 at 17:27
  • 3
    Here is how to find out if WWDR is already installed: After digging around, I found that you must go to your Application folder, Utilities subfolder, and run Keychain Access. Look in the certificates area. If you see something about WWDR certificate with an expiration date in the future, then you should be fine. Apparently, you cannot even do a build in XCode without having a WWDR certificate installed. In any case, if you are like me and did all this cert stuff 6 months ago, and now have a working build ready to submit for distribution, you will almost certainly already have the WWDR cert. – Marc Jan 21 '13 at 17:52

7 Answers7

47

You need to download it and double click on it. It will get stored in your computer's KeyChain. It can be described best as something like root level certificate authority that affirms that your development or distribution profile certificate was issued by Apple's WWDR and not forged somewhere else.

bioffe
  • 5,716
  • 2
  • 45
  • 63
18

iPhone Game Development book says:

WWDR certificate

Apple’s World Wide Developer Relations (WWDR) certificate is available from Apple at http://developer.apple.com/certificationauthority/AppleWWDRCA.cer. Download and install the certificate so that you can use it to certify builds. The WWDR certificate links your development certificate to Apple, completing the trust chain for your application.

Cocoa Dev
  • 8,655
  • 29
  • 105
  • 173
  • 7
    Please don't copy the words of others without proper attribution. I've added this to your answer here, but make sure you do this in the future. – Brad Larson May 07 '12 at 21:06
9

The WWDR certificate is needed to tell Xcode that your other certificates are valid. You need to download them all and drop them on your KeyChain.

hotpaw2
  • 68,014
  • 12
  • 81
  • 143
4

WWDR certificate is required since it contains the public key of the Certificate Authority(CA).Here the Certificate Authority is Apple itself(Apple Root CA).
This certificate is to ensure that your Development and Distribution certificates are indeed issued by the CA and the owner of that certificate(ie your identity) has been verified.
wiki regarding Certificate Authority

prajul
  • 1,196
  • 2
  • 14
  • 27
3

As per Apple :

To help protect customers and developers, we require that all third party apps, passes for Apple Wallet, Safari Extensions, Safari Push Notifications, and App Store purchase receipts are signed by a trusted certificate authority. The Apple Worldwide Developer Relations Certificate Authority issues the certificates you use to sign your software for Apple devices, allowing our systems to confirm that your software is delivered to users as intended and has not been modified.

Source : https://developer.apple.com/support/certificates/expiration/

2

I understand basic public key cryptography. You generate a key pair on your machine. Then you upload your public key to the certificate authority and they sign and return it to you. You then install the certificate on your key chain and use that to sign your apps in XCode (with the private key).

Pretty straight forward.

The WWDR Intermediate Certificate (WWDRIC) doesn’t seem to fit that model. You need to only download it once (unless it expires) and you may have multiple developer signing certificates over an extended period of time.

My hypothesis is that it allows Xcode to validate your developer certificates with a local source (the WWDRIC) and not have to go on to the network to validate your signing certificates. This avoids the latencies associated with networks (or you might not even be on the net).

Jay Yamada
  • 31
  • 2
1

As per My Experience Apple WWDR Certificate is very important. If you Upload Application without Installing it into Key-chains than your Application will be Approved but that will not show on to the iTunes Store even if it is ready for sale.

You will get the message like this:

enter image description here

If you'll change the Store then also you'll get the same message.

Hope it will help you.

Mayur
  • 5,004
  • 7
  • 34
  • 62