From 40d7f478f76032e0dbfe35bee510719bdd53c1a2 Mon Sep 17 00:00:00 2001 From: Stephane Legrand Date: Tue, 17 Jun 2025 23:36:25 +0200 Subject: [PATCH] Dummy file to be able to build on FreeBSD --- truststore_freebsd.go | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 truststore_freebsd.go diff --git a/truststore_freebsd.go b/truststore_freebsd.go new file mode 100644 index 0000000..6abe3bd --- /dev/null +++ b/truststore_freebsd.go @@ -0,0 +1,25 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package cert + +import ( + "os" +) + +var ( + FirefoxProfiles = []string{os.Getenv("HOME") + "/.mozilla/firefox/*", + os.Getenv("HOME") + "/.mozilla/firefox-trunk/*"} + NSSBrowsers = "Firefox and/or Chrome/Chromium" + + CertutilInstallHelp string +) + +func (ca *CA) installPlatform() error { + return nil +} + +func (ca *CA) uninstallPlatform() error { + return nil +}