Last active
August 22, 2025 18:28
-
-
Save rlanyi/f3edad3bd2f1753a937f8a0c6182d55a to your computer and use it in GitHub Desktop.
Revisions
-
rlanyi revised this gist
May 20, 2020 . 1 changed file with 8 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,6 +3,12 @@ How to create Apple PKPass .p12 certificate using Linux You don't need a Mac to do this :-) For generating PKPass files, you'll need 4 things after this tutorial: - Certificate Identifier (pass.com.example.www) - Team Identified (Organizational Unit (OU) in the cert generated by Apple) - The .p12 file - The password for the .p12 file 1. Login on https://developer.apple.com/account/ 2. Click Certificates, Identifiers & Profiles 3. Click on Identifiers @@ -45,6 +51,8 @@ Please note that the .p12 contains both certificates and a private key as well. openssl pkcs12 -in pkpass.p12 -nodes ``` Please note the `OU` field of the first certificate in the output. This is your Team Identifier. 17. Create a reminder in your calendar with the expiration date of your certificate. ``` openssl x509 -in pass.pem -noout -enddate -
rlanyi revised this gist
May 20, 2020 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,5 @@ How to create Apple PKPass .p12 certificate using Linux === You don't need a Mac to do this :-) -
rlanyi created this gist
May 20, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,50 @@ # How to create Apple PKPass .p12 certificate using Linux You don't need a Mac to do this :-) 1. Login on https://developer.apple.com/account/ 2. Click Certificates, Identifiers & Profiles 3. Click on Identifiers 4. On the right, filter to Pass Type IDs 5. Register a New Identifier, choose Pass Type IDs 6. Enter Description and Identifier 7. Finalize by clicking Register 8. Go to terminal and generate a private key (.key) ``` openssl genrsa -out pkpass.key 2048 ``` 9. Generate a certificate singing request (.csr) ``` openssl req -new -key pkpass.key -out pkpass.csr ``` Fill in the fields with your own data but leave Challenge password empty (press Enter). 10. On the Developer Portal choose the newly created identifier from the list and click Create Certificate. 11. Leave the Certificate name empty and upload the .csr file 12. On the next page click Download and save the downloaded `pass.cer` to the folder with the .key and .csr files 13. Download Apple's root certificate (Apple Worldwide Developer Relations Certification Authority) ``` wget http://developer.apple.com/certificationauthority/AppleWWDRCA.cer ``` 14. Convert .cer files to .pem format ``` openssl x509 -inform der -in AppleWWDRCA.cer -out AppleWWDRCA.pem openssl x509 -inform der -in pass.cer -out pass.pem ``` 15. Generate the .p12 certificate by using the private key, your certificate and Apple's certificate ``` openssl pkcs12 -export -clcerts -inkey pkpass.key -in pass.pem -certfile AppleWWDRCA.pem -name "Company Name" -out pkpass.p12 ``` You'll be requested to enter a password. Choose a strong password here. You'll use this password with the .p12 certificate when generating PKPass files. Please note that the .p12 contains both certificates and a private key as well. Make sure that you distribute it securely to the server that will generate PKPass files and that it is only readable by the PKPass generator application. 16. You can check the contents of your newly created .p12 certificate ``` openssl pkcs12 -in pkpass.p12 -nodes ``` 17. Create a reminder in your calendar with the expiration date of your certificate. ``` openssl x509 -in pass.pem -noout -enddate ``` This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ published: true