We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2fff27b + 40d7f47 commit 86db122Copy full SHA for 86db122
1 file changed
truststore_freebsd.go
@@ -0,0 +1,25 @@
1
+// Copyright 2018 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
+
5
+package cert
6
7
+import (
8
+ "os"
9
+)
10
11
+var (
12
+ FirefoxProfiles = []string{os.Getenv("HOME") + "/.mozilla/firefox/*",
13
+ os.Getenv("HOME") + "/.mozilla/firefox-trunk/*"}
14
+ NSSBrowsers = "Firefox and/or Chrome/Chromium"
15
16
+ CertutilInstallHelp string
17
18
19
+func (ca *CA) installPlatform() error {
20
+ return nil
21
+}
22
23
+func (ca *CA) uninstallPlatform() error {
24
25
0 commit comments