spiegel_podman/pkg/machine/certificates/certificates_darwin.go
Mario Loriedo f7dd6156d3 Import host certificates at machine startup on Windows
Implements the feature introduced in the design
document added with commit 4bdc1d37

Fixes https://redhat.atlassian.net/browse/RUN-4260

Signed-off-by: Mario Loriedo <mario.loriedo@gmail.com>
2026-04-16 13:35:40 +02:00

13 lines
321 B
Go

package certificates
import (
"crypto/x509"
"github.com/sirupsen/logrus"
)
// extractHostCertificates extracts trusted CA certificates from the macOS system keychain
func extractHostCertificates() []*x509.Certificate {
logrus.Warn("extracting trusted CA certificates on macOS is not implemented yet")
return nil
}