mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
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>
13 lines
321 B
Go
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
|
|
}
|