diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2021-05-19 13:44:30 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2021-05-21 15:44:51 +0200 |
| commit | f1005c14c312f1d8691c4265d00352ea48ea8a01 (patch) | |
| tree | fce3852bf35aa1c5c92509d8a581864d78a358be /ios | |
| parent | 4fe4f706d50c65f51dff80a231ac28871590c62f (diff) | |
| download | mullvadvpn-f1005c14c312f1d8691c4265d00352ea48ea8a01.tar.xz mullvadvpn-f1005c14c312f1d8691c4265d00352ea48ea8a01.zip | |
Update URL to the new Apple WWDRC certificate
Diffstat (limited to 'ios')
| -rw-r--r-- | ios/BuildInstructions.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ios/BuildInstructions.md b/ios/BuildInstructions.md index c8cc6ce657..340a116f76 100644 --- a/ios/BuildInstructions.md +++ b/ios/BuildInstructions.md @@ -36,7 +36,7 @@ openssl req -new \ WWDR certificate is used to verify the development and distribution certificates issued by Apple. ``` -curl https://developer.apple.com/certificationauthority/AppleWWDRCA.cer -O +curl https://www.apple.com/certificateauthority/AppleWWDRCAG3.cer -O ``` # Convert certificates to PEM format @@ -47,8 +47,8 @@ openssl x509 -inform der -outform pem \ -out distribution.pem openssl x509 -inform der -outform pem \ - -in AppleWWDRCA.cer \ - -out AppleWWDRCA.pem + -in AppleWWDRCAG3.cer \ + -out AppleWWDRCAG3.pem ``` # Export private key and certificates @@ -67,14 +67,14 @@ scratch. openssl pkcs12 -export \ -inkey private_key.pem \ -in distribution.pem \ - -certfile AppleWWDRCA.pem \ + -certfile AppleWWDRCAG3.pem \ -out apple_code_signing.p12 \ -name "<FRIENDLY_KEYCHAIN_NAME>" ``` # Remove old private key and certificates from Keychain -__Skip this section if you create the private key in the very first time.__ +__Skip this section if you create the private key for the very first time.__ If you happen to re-create the keys, you will have to remove the old keys and certificates from Keychain. @@ -124,7 +124,7 @@ securely stored in Keychain now. ``` rm distribution.{pem,cer} \ - AppleWWDRCA.{pem,cer} \ + AppleWWDRCAG3.{pem,cer} \ cert_signing_request \ apple_code_signing.p12 \ private_key.pem |
