summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/common/db/tlsgo/rootcerts.go
blob: ee3ec3769f1ee5089f54d6fca59956c84766d2ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) MongoDB, Inc. 2018-present.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
//
// Based on https://github.com/hashicorp/go-rootcerts by HashiCorp
// See THIRD-PARTY-NOTICES for original license terms.

// +build !darwin

package tlsgo

import (
	"crypto/x509"
)

// Stubbed for non-darwin systems. By returning nil, the Go library
// will use its own code for finding system certs.
func loadSystemCAs() (*x509.CertPool, error) {
	return nil, nil
}