Self-contained binaries. No install, no dependencies, no runtime. Just download and run.
Prebuilt Binaries
Build from Source
git clone https://github.com/binRick/tls-ca-fetch cd tls-ca-fetch go build -ldflags="-s -w" -o tls-ca-fetch . # Or cross-compile all platforms at once: make cross
Verify It Works
# Should print the chain and save google.com-ca.pem ./tls-ca-fetch google.com # Check the saved cert openssl x509 -in google.com-ca.pem -noout -subject -issuer -dates