File: truststore_others.go

package info (click to toggle)
golang-github-smallstep-truststore 0.12.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 188 kB
  • sloc: makefile: 30; sh: 21
file content (21 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// +build !linux,!darwin,!windows,!freebsd

package truststore

import "crypto/x509"

var (
	// NSSProfile is the path of the Firefox profiles.
	NSSProfile = ""

	// CertutilInstallHelp is the command to add NSS support.
	CertutilInstallHelp = ""
)

func installPlatform(filename string, cert *x509.Certificate) error {
	return ErrTrustNotSupported
}

func uninstallPlatform(filename string, cert *x509.Certificate) error {
	return ErrTrustNotSupported
}