mirror of
https://github.com/emmansun/gmsm.git
synced 2025-04-22 02:06:18 +08:00
11 lines
261 B
Go
11 lines
261 B
Go
package smx509
|
|
|
|
// Possible certificate files; stop after finding one.
|
|
var certFiles = []string{
|
|
"/var/ssl/certs/ca-bundle.crt",
|
|
}
|
|
|
|
// Possible directories with certificate files; all will be read.
|
|
var certDirectories = []string{
|
|
"/var/ssl/certs",
|
|
} |