Skip to content

Commit b148f68

Browse files
committed
Update README.md
1 parent c9dd232 commit b148f68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

etc/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ The certificate trust stores were retrieved from
66
* **Linux:** Copied from an up-to-date Debian Linux machine
77
* **Mozilla:** https://curl.haxx.se/docs/caextract.html
88
* **Java:** extracted (``keytool -list -rfc -keystore lib/security/cacerts | grep -E -v '^$|^\*\*\*\*\*|^Entry |^Creation |^Alias '``) from a JDK LTS version from https://jdk.java.net/. (use dos2unix).
9-
* **Microsoft:** Following command pulls all certificates from Windows Update services: ``CertUtil -syncWithWU -f -f . `` (see also http://aka.ms/RootCertDownload, https://technet.microsoft.com/en-us/library/dn265983(v=ws.11).aspx#BKMK_CertUtilOptions). They are in DER format. Convert them like ``for f in \*.cer; do echo $f >/dev/stderr; openssl x509 -in $f -inform DER -outform PEM ;done >/tmp/Microsoft.pem``
9+
* **Microsoft:** Following command pulls all certificates from Windows Update services: ``CertUtil -syncWithWU -f -f . `` (see also http://aka.ms/RootCertDownload, https://technet.microsoft.com/en-us/library/dn265983(v=ws.11).aspx#BKMK_CertUtilOptions). They are in DER format. Convert them like ``for f in *.cer; do echo $f >/dev/stderr; openssl x509 -in $f -inform DER -outform PEM ;done >/tmp/Microsoft.pem``
1010
* **Apple:**
1111
1. __System:__ from Apple OS X keychain app. Open Keychain Access utility, i.e.
1212
In the Finder window, under Favorites --> "Applications" --> "Utilities"
1313
(OR perform a Spotlight Search for "Keychain Access")
1414
--> "Keychain Access" (2 click). In that window --> "Keychains" --> "System Root"
1515
--> "Category" --> "All Items"
1616
Select all CA certificates except for "Developer ID Certification Authority", omit expired ones, "File" --> "Export Items"
17-
2. __Internet:__ Pick the latest subdir (=highest number) from https://opensource.apple.com/source/security_certificates/. They are in all DER format despite their file extension. Download them with ``wget --level=1 --cut-dirs=5 --mirror --convert-links --adjust-extension --page-requisites --no-parent https://opensource.apple.com/source/security_certificates/security_certificates-<latest>/certificates/roots/``. Then: ``for f in \*.cer \*.der \*.crt; do echo $f >/dev/stderr; openssl x509 -in $f -inform DER -outform PEM ;done >/tmp/Apple.pem``
17+
2. __Internet:__ Pick the latest subdir (=highest number) from https://opensource.apple.com/source/security_certificates/. They are in all DER format despite their file extension. Download them with ``wget --level=1 --cut-dirs=5 --mirror --convert-links --adjust-extension --page-requisites --no-parent https://opensource.apple.com/source/security_certificates/security_certificates-<latest>/certificates/roots/``. Then: ``for f in *.cer *.der *.crt; do echo $f >/dev/stderr; openssl x509 -in $f -inform DER -outform PEM ;done >/tmp/Apple.pem``
1818

1919
**Attention**: You need to remove the DST Root CA X3 which is for your reference in this directory.
2020

0 commit comments

Comments
 (0)