v1.0.0 ยท April 2026 ยท Go 1.22 ยท Stdlib only

Prebuilt Binaries

๐Ÿง

Linux

x86-64 (amd64)
tls-ca-fetch-linux-amd64 4.7 MB
โ†“ Download
chmod +x tls-ca-fetch-linux-amd64 && ./tls-ca-fetch-linux-amd64 example.com
๐Ÿง

Linux

ARM64 (arm64)
tls-ca-fetch-linux-arm64 4.6 MB
โ†“ Download
chmod +x tls-ca-fetch-linux-arm64 && ./tls-ca-fetch-linux-arm64 example.com
๐ŸŽ

macOS

Apple Silicon (arm64)
tls-ca-fetch-darwin-arm64 4.6 MB
โ†“ Download
chmod +x tls-ca-fetch-darwin-arm64 && ./tls-ca-fetch-darwin-arm64 example.com
๐ŸŽ

macOS

Intel (amd64)
tls-ca-fetch-darwin-amd64 4.8 MB
โ†“ Download
chmod +x tls-ca-fetch-darwin-amd64 && ./tls-ca-fetch-darwin-amd64 example.com
๐ŸชŸ

Windows

x64 (amd64)
tls-ca-fetch-windows-amd64.exe 4.8 MB
โ†“ Download
.\tls-ca-fetch-windows-amd64.exe example.com

Build from Source

bash
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

bash
# 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