Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reusing Certificate Signing Request for Apple Push Service

The creation of a CSR will prompt Keychain Access to simultaneously generate a public and private key pair. Your private key is stored on your Mac in th....

So every iOS app can have two environments set up for push notifications, development and production.

What is the harm in reusing the same CSR (and thus the same private key?) for both dev and prod environments? Is this even possible?

In a similar effect what would be the harm of using the same CSR across the different apps.

Basically I want to manage a single private key when I install the required elements on the server that will handle push notifications on my end.

Thanks

like image 480
Joey Avatar asked May 10 '11 20:05

Joey


1 Answers

I use the same private/public key for all my certificates. The only time I ever end up having different private/public keys is when a client wants me to manage their whole Apple account and certificate generation.

like image 59
enamrik Avatar answered Sep 30 '22 15:09

enamrik