mirror of
https://github.com/emmansun/gmsm.git
synced 2025-04-25 03:36:18 +08:00
12 lines
371 B
Go
12 lines
371 B
Go
![]() |
// +build dragonfly freebsd netbsd openbsd
|
||
|
|
||
|
package smx509
|
||
|
|
||
|
// Possible certificate files; stop after finding one.
|
||
|
var certFiles = []string{
|
||
|
"/usr/local/etc/ssl/cert.pem", // FreeBSD
|
||
|
"/etc/ssl/cert.pem", // OpenBSD
|
||
|
"/usr/local/share/certs/ca-root-nss.crt", // DragonFly
|
||
|
"/etc/openssl/certs/ca-certificates.crt", // NetBSD
|
||
|
}
|