File: open_windows.go

package info (click to toggle)
golang-github-smallstep-crypto 0.75.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,876 kB
  • sloc: sh: 66; makefile: 50
file content (13 lines) | stat: -rw-r--r-- 168 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
//go:build windows

package open

import (
	"io"

	"github.com/google/go-tpm/legacy/tpm2"
)

func open(_ string) (io.ReadWriteCloser, error) {
	return tpm2.OpenTPM()
}