root_bsd.go 518 B

12345678910111213141516
  1. // Copyright 2015 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build dragonfly freebsd netbsd openbsd
  5. package x509
  6. // Possible certificate files; stop after finding one.
  7. var certFiles = []string{
  8. "/usr/local/etc/ssl/cert.pem", // FreeBSD
  9. "/etc/ssl/cert.pem", // OpenBSD
  10. "/usr/local/share/certs/ca-root-nss.crt", // DragonFly
  11. "/etc/openssl/certs/ca-certificates.crt", // NetBSD
  12. }